Skip to content

Commit 6437e9b

Browse files
committed
#102 Upgrade to .NET 8
1 parent 7584214 commit 6437e9b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/CI.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
5.0.x
2222
6.0.x
2323
7.0.x
24+
8.0.x
2425
2526
- name: Restore
2627
run: dotnet restore
@@ -32,4 +33,5 @@ jobs:
3233
run: |
3334
dotnet test --no-restore --framework net5.0
3435
dotnet test --no-restore --framework net6.0
35-
dotnet test --no-restore --framework net7.0
36+
dotnet test --no-restore --framework net7.0
37+
dotnet test --no-restore --framework net8.0

WebPush.Test/WebPush.Test.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

WebPush/WebPush.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Version>1.0.12</Version>
77
<Authors>Cory Thompson</Authors>

0 commit comments

Comments
 (0)