diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9f730d5..7fcff6f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,6 +20,15 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
+
+ - name: Setup dotnet (main)
+ uses: actions/setup-dotnet@v1
+
+ - name: Setup dotnet (testing netcore3)
+ uses: actions/setup-dotnet@v1
+ with:
+ dotnet-version: '3.1.x'
+
- run: dotnet --info
- if: contains(matrix.runs-on, 'macOS') || contains(matrix.runs-on, 'ubuntu')
diff --git a/build/build.csproj b/build/build.csproj
index 6507c0c..c6e4e61 100644
--- a/build/build.csproj
+++ b/build/build.csproj
@@ -2,11 +2,11 @@
Exe
- netcoreapp3.0
+ net5.0
-
+
diff --git a/global.json b/global.json
index 9e837b2..7abee74 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "3.1.300",
- "rollForward": "latestPatch"
+ "version": "5.0.100",
+ "rollForward": "latestMajor"
}
}
\ No newline at end of file
diff --git a/src/IdentityModel.AspNetCore.csproj b/src/IdentityModel.AspNetCore.csproj
index 9171b75..16df0a7 100644
--- a/src/IdentityModel.AspNetCore.csproj
+++ b/src/IdentityModel.AspNetCore.csproj
@@ -1,7 +1,7 @@
- netstandard2.0;netcoreapp3.1
+ netcoreapp3.1;net5.0
true
@@ -20,23 +20,20 @@
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
diff --git a/test/Tests/Tests.csproj b/test/Tests/Tests.csproj
index 1550a21..335cae1 100644
--- a/test/Tests/Tests.csproj
+++ b/test/Tests/Tests.csproj
@@ -1,7 +1,7 @@
- netcoreapp3.1
+ netcoreapp3.1;net5.0