30 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
|     <PropertyGroup>
 | |
|         <TargetFramework>net8.0</TargetFramework>
 | |
|         <ImplicitUsings>enable</ImplicitUsings>
 | |
|         <Nullable>enable</Nullable>
 | |
|     </PropertyGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|       <ProjectReference Include="..\ApplicationLayer\ApplicationLayer.csproj" />
 | |
|     </ItemGroup>
 | |
| 
 | |
|     <ItemGroup>
 | |
|       <PackageReference Include="DocumentFormat.OpenXml" Version="3.1.0" />
 | |
|       <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.8" />
 | |
|       <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.2" />
 | |
|       <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.Relational" Version="9.0.2" />
 | |
|       <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.2">
 | |
|         <PrivateAssets>all</PrivateAssets>
 | |
|         <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
 | |
|       </PackageReference>
 | |
|       <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
 | |
|     </ItemGroup>
 | |
| 
 | |
| </Project>
 |