gpt_api.Application.csproj 860 B

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <NoWarn>1701;1702;1591</NoWarn>
  5. <DocumentationFile>gpt_api.Application.xml</DocumentationFile>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <None Remove="applicationsettings.json" />
  10. <None Remove="gpt_api.Application.xml" />
  11. <None Remove="System\user\" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="applicationsettings.json">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\gpt_api.Core\gpt_api.Core.csproj" />
  20. <ProjectReference Include="..\gpt_api.Entity\gpt_api.Entity.csproj" />
  21. <ProjectReference Include="..\gpt_api.Respository\gpt_api.Respository.csproj" />
  22. </ItemGroup>
  23. </Project>