diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 25af3bc..5fbfc29 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,6 +21,7 @@ jobs: 5.0.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore @@ -32,4 +33,5 @@ jobs: run: | dotnet test --no-restore --framework net5.0 dotnet test --no-restore --framework net6.0 - dotnet test --no-restore --framework net7.0 \ No newline at end of file + dotnet test --no-restore --framework net7.0 + dotnet test --no-restore --framework net8.0 \ No newline at end of file diff --git a/WebPush.Test/WebPush.Test.csproj b/WebPush.Test/WebPush.Test.csproj index f6bdb68..a7ebb30 100755 --- a/WebPush.Test/WebPush.Test.csproj +++ b/WebPush.Test/WebPush.Test.csproj @@ -1,7 +1,7 @@  - net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0;net7.0 + net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0 false diff --git a/WebPush/WebPush.csproj b/WebPush/WebPush.csproj index facb6ac..2665bc7 100755 --- a/WebPush/WebPush.csproj +++ b/WebPush/WebPush.csproj @@ -1,7 +1,7 @@  - net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0 + net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0 true 1.0.12 Cory Thompson