Skip to content

Commit bb22e82

Browse files
committed
add support for net462, net7.0 and net8.0
1 parent 4159ac7 commit bb22e82

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Diff for: .github/workflows/build-and-test.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
build-configuration: [ Debug, Release ]
14-
test-target-framework: [ net6.0 ]
14+
test-target-framework: [ net8.0, net7.0, net6.0 ]
1515
name: Build And Test (${{ matrix.test-target-framework }}, ${{ matrix.build-configuration }})
1616
runs-on: ubuntu-latest
1717
steps:
@@ -20,6 +20,8 @@ jobs:
2020
uses: actions/setup-dotnet@v2
2121
with:
2222
dotnet-version: |
23+
8.x
24+
7.x
2325
6.x
2426
- name: Restore
2527
run: dotnet restore ${{ env.JsonDiffPatchSolutionPath }}

Diff for: global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.417",
3+
"version": "8.0.100",
44
"rollForward": "minor",
55
"allowPrerelease": true
66
}

Diff for: test/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<TargetFrameworks>net48;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

0 commit comments

Comments
 (0)