2024-09-30 17:10:43 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<PropertyGroup>
|
2025-05-28 16:45:30 +08:00
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2024-10-30 17:49:05 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
2024-09-30 17:10:43 +08:00
|
|
|
|
|
2024-11-13 17:50:52 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Abstractions\**" />
|
2025-03-14 13:45:29 +08:00
|
|
|
|
<Compile Remove="Interfaces\**" />
|
2024-11-13 17:50:52 +08:00
|
|
|
|
<EmbeddedResource Remove="Abstractions\**" />
|
2025-03-14 13:45:29 +08:00
|
|
|
|
<EmbeddedResource Remove="Interfaces\**" />
|
2024-11-13 17:50:52 +08:00
|
|
|
|
<None Remove="Abstractions\**" />
|
2025-03-14 13:45:29 +08:00
|
|
|
|
<None Remove="Interfaces\**" />
|
2024-11-13 17:50:52 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-10-25 19:11:43 +08:00
|
|
|
|
<ItemGroup>
|
2025-05-28 16:45:30 +08:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" />
|
|
|
|
|
|
<PackageReference Include="Mapster"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json"/>
|
|
|
|
|
|
<PackageReference Include="Serilog" />
|
|
|
|
|
|
<PackageReference Include="System.Linq.Dynamic.Core"/>
|
|
|
|
|
|
<PackageReference Include="System.Text.Json" />
|
|
|
|
|
|
<PackageReference Include="Volo.Abp.Core" />
|
|
|
|
|
|
<PackageReference Include="Volo.Abp.Ddd.Domain" />
|
2025-04-10 14:12:14 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-09-30 17:10:43 +08:00
|
|
|
|
</Project>
|