File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v2
16
16
17
17
- name : Setup .NET SDK
18
- uses : actions/setup-dotnet@v1.7.2
18
+ uses : actions/setup-dotnet@v4.0.0
19
19
with :
20
- dotnet-version : 5.0.x
20
+ dotnet-version : |
21
+ 5.0.x
22
+ 6.0.x
21
23
22
24
- name : Restore
23
25
run : dotnet restore
26
28
run : dotnet build --configuration Release --no-restore
27
29
28
30
- name : Test
29
- run : dotnet test --no-restore --framework net5.0
31
+ run : |
32
+ dotnet test --no-restore --framework net5.0
33
+ dotnet test --no-restore --framework net6.0
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net45;net46;net471;net48;net5.0; netcoreapp2.0;netcoreapp3.1</TargetFrameworks >
4
+ <TargetFrameworks >net45;net46;net471;net48;netcoreapp2.0;netcoreapp3.1;net5.0;net6.0 </TargetFrameworks >
5
5
<IsPackable >false</IsPackable >
6
6
</PropertyGroup >
7
7
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net45;net46;net471;net48;net5.0; netstandard1.3;netstandard2.0;netstandard2.1</TargetFrameworks >
4
+ <TargetFrameworks >net45;net46;net471;net48;netstandard1.3;netstandard2.0;netstandard2.1;net5.0;net6.0 </TargetFrameworks >
5
5
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
6
6
<Version >1.0.12</Version >
7
7
<Authors >Cory Thompson</Authors >
You can’t perform that action at this time.
0 commit comments