mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.6" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.6">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
<PackageReference Include="NSwag.AspNetCore" Version="14.4.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0-preview.3.efcore.9.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Govor.Application\Govor.Application.csproj" />
|
|
<ProjectReference Include="..\Govor.Contracts\Govor.Contracts.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|