12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <NoWarn>1701;1702;1591</NoWarn>
- <DocumentationFile>gpt_api.Application.xml</DocumentationFile>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="applicationsettings.json" />
- <None Remove="gpt_api.Application.xml" />
- <None Remove="System\user\" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="applicationsettings.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\gpt_api.Core\gpt_api.Core.csproj" />
- <ProjectReference Include="..\gpt_api.Entity\gpt_api.Entity.csproj" />
- <ProjectReference Include="..\gpt_api.Respository\gpt_api.Respository.csproj" />
- </ItemGroup>
- </Project>
|