Admin.NET.Application.csproj 610 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <NoWarn>1701;1702;1591</NoWarn>
  5. <DocumentationFile>Admin.NET.Application.xml</DocumentationFile>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <None Remove="AppConfig.json" />
  9. <None Remove="Admin.NET.Application.xml" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <Content Include="AppConfig.json">
  13. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  14. </Content>
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\Admin.NET.Core\Admin.NET.Core.csproj" />
  18. </ItemGroup>
  19. </Project>