30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>net9.0</TargetFramework>
 | |
|     <Nullable>enable</Nullable>
 | |
|     <ImplicitUsings>enable</ImplicitUsings>
 | |
|     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
 | |
|     <WarningsNotAsErrors>NU1608</WarningsNotAsErrors>
 | |
|     <InvariantGlobalization>false</InvariantGlobalization>
 | |
|     <GenerateDocumentationFile>true</GenerateDocumentationFile>
 | |
|     <NoWarn>$(NoWarn);1591</NoWarn>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.22.0" />
 | |
|     <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
 | |
|     <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
 | |
|     <PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Content Update="appsettings.json">
 | |
|       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
 | |
|     </Content>
 | |
|     <Content Update="appsettings.Development.json">
 | |
|       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
 | |
|     </Content>
 | |
|   </ItemGroup>
 | |
| 
 | |
| </Project> |