2025-05-06 06:45:49 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<Import Project="..\..\common.props" />
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2025-06-24 07:09:33 +00:00
|
|
|
|
<UserSecretsId>467bbc0f-83d0-40d0-a9f2-230c8620bdad</UserSecretsId>
|
2025-05-06 06:45:49 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="appsettings.json" />
|
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="appsettings.secrets.json" />
|
|
|
|
|
|
<Content Include="appsettings.secrets.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="appsettings.Dev.json" />
|
|
|
|
|
|
<Content Include="appsettings.Dev.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="appsettings.Production.json" />
|
|
|
|
|
|
<Content Include="appsettings.Production.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<None Remove="Seeds\SeederData.json" />
|
|
|
|
|
|
<Content Include="Seeds\SeederData.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="Seeds\SeederData.Dev.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="Seeds\SeederData.Production.json">
|
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Volo.Abp.Autofac" Version="9.0.2" />
|
|
|
|
|
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="9.0.2" />
|
|
|
|
|
|
<ProjectReference Include="..\Kurs.Platform.Application.Contracts\Kurs.Platform.Application.Contracts.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Kurs.Platform.EntityFrameworkCore\Kurs.Platform.EntityFrameworkCore.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Logs\**" />
|
|
|
|
|
|
<Content Remove="Logs\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="Logs\**" />
|
|
|
|
|
|
<None Remove="Logs\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|