Cucumber/Cloud/Cloud.csproj

24 lines
1.1 KiB
XML
Raw Normal View History

2024-10-28 00:25:51 +04:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2024-10-28 18:39:13 +04:00
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.4" />
2024-10-28 02:09:55 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
2024-11-10 13:35:23 +04:00
<PackageReference Include="StackExchange.Redis" Version="2.8.16" />
2024-10-28 00:25:51 +04:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
2024-10-28 18:39:13 +04:00
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.35.0" />
2024-10-28 00:25:51 +04:00
</ItemGroup>
</Project>