-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPokeApi.csproj
20 lines (16 loc) · 963 Bytes
/
PokeApi.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>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.2" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.5.0" />
<PackageReference Include="MongoDB.Driver" Version="2.10.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.5.0" />
</ItemGroup>
</Project>