forked from EduardoPires/Minimal-API
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMinimal.csproj
20 lines (17 loc) · 842 Bytes
/
Minimal.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.3" />
<PackageReference Include="MongoDB.Driver" Version="2.15.0" />
<PackageReference Include="Pluralize.NET" Version="1.0.2" />
<PackageReference Include="SendGrid" Version="9.26.0" />
<PackageReference Include="StackExchange.Redis" Version="2.5.43" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.3.0" />
<PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="6.3.0" />
</ItemGroup>
</Project>