34 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|     <PropertyGroup>
 | |
|         <TargetFramework>net8.0</TargetFramework>
 | |
|         <Nullable>enable</Nullable>
 | |
|         <ImplicitUsings>enable</ImplicitUsings>
 | |
|         <GenerateDocumentationFile>true</GenerateDocumentationFile>
 | |
|     </PropertyGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|         <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.2">
 | |
|           <PrivateAssets>all</PrivateAssets>
 | |
|           <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|         </PackageReference>
 | |
|         <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.2">
 | |
|           <PrivateAssets>all</PrivateAssets>
 | |
|           <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|         </PackageReference>
 | |
|         <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
 | |
|     </ItemGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|       <ProjectReference Include="..\ApplicationLayer\ApplicationLayer.csproj" />
 | |
|       <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
 | |
|     </ItemGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|       <None Update="template.xlsx">
 | |
|         <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
 | |
|       </None>
 | |
|     </ItemGroup>
 | |
| 
 | |
| </Project>
 |