44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|
|||
|
|
<Import Project="..\..\common.props" />
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net9.0</TargetFramework>
|
|||
|
|
<RootNamespace>Kurs.Platform</RootNamespace>
|
|||
|
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
|||
|
|
<UserSecretsId>Kurs.Platform-4681b4fd-151f-4221-84a4-929d86723e4c</UserSecretsId>
|
|||
|
|
</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" />
|
|||
|
|
<!-- <PackageReference Include="Hangfire.SqlServer" Version="1.8.17" /> PGSQL -->
|
|||
|
|
<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" />
|
|||
|
|
<PackageReference Include="Elastic.Serilog.Sinks" Version="8.12.3" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Kurs.Platform.Application\Kurs.Platform.Application.csproj" />
|
|||
|
|
<ProjectReference Include="..\Kurs.Platform.EntityFrameworkCore\Kurs.Platform.EntityFrameworkCore.csproj" />
|
|||
|
|
<ProjectReference Include="..\Kurs.Platform.HttpApi\Kurs.Platform.HttpApi.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Compile Remove="Logs\**" />
|
|||
|
|
<Content Remove="Logs\**" />
|
|||
|
|
<EmbeddedResource Remove="Logs\**" />
|
|||
|
|
<None Remove="Logs\**" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|