erp-platform/api/src/Erp.Platform.HttpApi.Host/Erp.Platform.HttpApi.Host.csproj

46 lines
1.9 KiB
XML
Raw Normal View History

2025-05-06 06:45:49 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<Import Project="..\..\common.props" />
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
2025-11-11 19:49:52 +00:00
<RootNamespace>Erp.Platform</RootNamespace>
2025-05-06 06:45:49 +00:00
<PreserveCompilationReferences>true</PreserveCompilationReferences>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.AspNetCore.MultiTenancy" Version="9.0.2" />
<PackageReference Include="Volo.Abp.Autofac" Version="9.0.2" />
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="9.0.2" />
<PackageReference Include="Volo.Abp.Swashbuckle" Version="9.0.2" />
<PackageReference Include="Volo.Abp.Account.Web.OpenIddict" Version="9.0.2" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="9.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.10" />
2025-06-11 06:44:27 +00:00
<PackageReference Include="Hangfire.SqlServer" Version="1.8.14" />
2025-05-06 06:45:49 +00:00
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
2025-05-07 06:55:09 +00:00
<PackageReference Include="Serilog.Sinks.PostgreSQL" Version="2.3.0" />
2025-06-10 20:34:46 +00:00
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="8.2.0" />
2025-05-06 06:45:49 +00:00
</ItemGroup>
<ItemGroup>
2025-11-11 19:49:52 +00:00
<ProjectReference Include="..\Erp.Platform.Application\Erp.Platform.Application.csproj" />
<ProjectReference Include="..\Erp.Platform.EntityFrameworkCore\Erp.Platform.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\Erp.Platform.HttpApi\Erp.Platform.HttpApi.csproj" />
2025-12-05 08:56:53 +00:00
<ProjectReference Include="..\..\modules\Erp.SqlQueryManager\Erp.SqlQueryManager.Application\Erp.SqlQueryManager.Application.csproj" />
2025-05-06 06:45:49 +00:00
</ItemGroup>
<ItemGroup>
<Compile Remove="Logs\**" />
<Content Remove="Logs\**" />
<EmbeddedResource Remove="Logs\**" />
<None Remove="Logs\**" />
</ItemGroup>
</Project>
2025-11-11 19:49:52 +00:00