Skip to content

Commit 79ef106

Browse files
committed
Updated to ASP.NET Core 3.1
1 parent f64d7a8 commit 79ef106

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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-basic-authentication-api
22

3-
ASP.NET Core 3.0 - Basic HTTP Authentication API
3+
ASP.NET Core 3.1 - Basic HTTP Authentication API
44

55
For documentation and instructions check out https://jasonwatmore.com/post/2019/10/21/aspnet-core-3-basic-authentication-tutorial-with-example-api

WebApi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)