34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
|
|
<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>
|
||
|
|
|
||
|
|
<ProjectReference Include="..\JiShe.IOT.Application.Contracts\JiShe.IOT.Application.Contracts.csproj"/>
|
||
|
|
<ProjectReference Include="..\JiShe.IOT.EntityFrameworkCore\JiShe.IOT.EntityFrameworkCore.csproj"/>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Compile Remove="Logs\**"/>
|
||
|
|
<Content Remove="Logs\**"/>
|
||
|
|
<EmbeddedResource Remove="Logs\**"/>
|
||
|
|
<None Remove="Logs\**"/>
|
||
|
|
<None Update="appsettings.json">
|
||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|