2025-03-11 10:24:11 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging"/>
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Async"/>
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File"/>
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console"/>
|
|
|
|
|
<PackageReference Include="Volo.Abp.Autofac"/>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
2025-05-27 14:02:24 +08:00
|
|
|
<ProjectReference Include="..\JiShe.ServicePro.Application.Contracts\JiShe.ServicePro.Application.Contracts.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\JiShe.ServicePro.EntityFrameworkCore\JiShe.ServicePro.EntityFrameworkCore.csproj"/>
|
2025-03-11 10:24:11 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Logs\**"/>
|
|
|
|
|
<Content Remove="Logs\**"/>
|
|
|
|
|
<EmbeddedResource Remove="Logs\**"/>
|
|
|
|
|
<None Remove="Logs\**"/>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|