SACenter/SA.ConsoleApp/SA.ConsoleApp.csproj

31 lines
903 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="NLog" Version="5.0.1" />
<PackageReference Include="NLog.Schema" Version="5.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SA.AppDomain\SA.AppDomain.csproj" />
<ProjectReference Include="..\SA.Domain.XFYun\SA.Domain.XFYun.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>