21 lines
		
	
	
		
			659 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			659 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|     <PropertyGroup>
 | |
|         <TargetFramework>net8.0</TargetFramework>
 | |
|         <Nullable>enable</Nullable>
 | |
|         <ImplicitUsings>enable</ImplicitUsings>
 | |
|         <InvariantGlobalization>true</InvariantGlobalization>
 | |
|         <GenerateDocumentationFile>true</GenerateDocumentationFile>
 | |
|     </PropertyGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|         <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
 | |
|     </ItemGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|       <ProjectReference Include="..\ApplicationLayer\ApplicationLayer.csproj" />
 | |
|       <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
 | |
|     </ItemGroup>
 | |
| 
 | |
| </Project>
 |