-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyToDoListProject.csproj
More file actions
20 lines (17 loc) · 906 Bytes
/
myToDoListProject.csproj
File metadata and controls
20 lines (17 loc) · 906 Bytes
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>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<UserSecretsId>2009445a-9f31-4459-8b50-727c9457024d</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.4" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0-rc.1.23421.29" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.9.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<!-- <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" /> -->
</ItemGroup>
</Project>