JiShe.IOT.Admin/src/JiShe.IoT.DbMigrator/JiShe.IoT.DbMigrator.csproj

34 lines
1.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2025-03-11 10:24:11 +08:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-06-12 09:29:05 +08:00
<TargetFramework>$(DotnetTargetFrameworkVersion)</TargetFramework>
2025-03-11 10:24:11 +08:00
</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:27:50 +08:00
<ProjectReference Include="..\JiShe.IoT.Application.Contracts\JiShe.IoT.Application.Contracts.csproj"/>
<ProjectReference Include="..\JiShe.IoT.EntityFrameworkCore\JiShe.IoT.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>