Skip to content

Commit 07d0a4e

Browse files
committed
Updated to ASP.NET Core 3.1
1 parent 8784cd6 commit 07d0a4e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/bin/Debug/netcoreapp3.0/WebApi.dll",
13+
"program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/WebApi.dll",
1414
"args": [],
1515
"cwd": "${workspaceFolder}",
1616
"stopAtEntry": false,

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# aspnet-core-3-registration-login-api
22

3-
ASP.NET Core 3.0 - Simple API for User Management, Authentication and Registration
3+
ASP.NET Core 3.1 - Simple API for User Management, Authentication and Registration
44

55
For documentation and instructions check out https://jasonwatmore.com/post/2019/10/14/aspnet-core-3-simple-api-for-authentication-registration-and-user-management

WebApi.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="AutoMapper" Version="9.0.0" />
77
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
8-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0" />
9-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.0.0" />
11-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.5.0" />
8+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.0" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.0" />
11+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" />
1212
</ItemGroup>
1313
</Project>

0 commit comments

Comments
 (0)