File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,18 @@ jobs:
2828 uses : actions/checkout@v2.3.4
2929 with :
3030 fetch-depth : 0
31- - name : Setup .NET SDK
31+ - name : Setup .NET Core 3.1 SDK
32+ uses : actions/setup-dotnet@v1.8.1
33+ with :
34+ dotnet-version : 3.1.x
35+ - name : Setup .NET 5.0 SDK
3236 uses : actions/setup-dotnet@v1.8.1
3337 with :
3438 dotnet-version : 5.0.x
35- - name : Setup .NET Core 3.1 runtime
39+ - name : Setup .NET 6.0 SDK
3640 uses : actions/setup-dotnet@v1.8.1
3741 with :
38- dotnet-version : 3.1 .x
42+ dotnet-version : 6.0 .x
3943 - name : Build
4044 run : dotnet build LibGit2Sharp.sln --configuration Release
4145 - name : Upload packages
5256 run : dotnet test LibGit2Sharp.sln --configuration Release --no-restore --framework netcoreapp3.1 --logger "GitHubActions" /p:ExtraDefine=LEAKS_IDENTIFYING
5357 - name : Run net5.0 tests
5458 run : dotnet test LibGit2Sharp.sln --configuration Release --no-restore --framework net5.0 --logger "GitHubActions" /p:ExtraDefine=LEAKS_IDENTIFYING
59+ - name : Run net6.0 tests
60+ run : dotnet test LibGit2Sharp.sln --configuration Release --no-restore --framework net6.0 --logger "GitHubActions" /p:ExtraDefine=LEAKS_IDENTIFYING
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net472;netcoreapp3.1;net5.0</TargetFrameworks >
4+ <TargetFrameworks >net472;netcoreapp3.1;net5.0;net6.0 </TargetFrameworks >
55 </PropertyGroup >
66
77 <ItemGroup >
You can’t perform that action at this time.
0 commit comments