Skip to content

Commit 7584214

Browse files
committed
#99 Upgrade to .NET 7
1 parent e447fe5 commit 7584214

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
@@ -20,6 +20,7 @@ jobs:
2020
dotnet-version: |
2121
5.0.x
2222
6.0.x
23+
7.0.x
2324
2425
- name: Restore
2526
run: dotnet restore
@@ -30,4 +31,5 @@ jobs:
3031
- name: Test
3132
run: |
3233
dotnet test --no-restore --framework net5.0
33-
dotnet test --no-restore --framework net6.0
34+
dotnet test --no-restore --framework net6.0
35+
dotnet test --no-restore --framework net7.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</TargetFrameworks>
4+
<TargetFrameworks>net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0;net7.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</TargetFrameworks>
4+
<TargetFrameworks>net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Version>1.0.12</Version>
77
<Authors>Cory Thompson</Authors>

0 commit comments

Comments
 (0)