Skip to content

Commit 5bef119

Browse files
committed
Enable CI tests for net10.0
1 parent eca999b commit 5bef119

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,22 @@ jobs:
2121
submodules: true
2222

2323
# Setup .NET
24-
- name: Setup .NET 6.0
24+
- name: Setup .NET 10.0
2525
uses: actions/setup-dotnet@v4
2626
with:
27-
dotnet-version: '6.0.x'
27+
dotnet-version: '10.0.x'
28+
- name: Setup .NET 9.0
29+
uses: actions/setup-dotnet@v4
30+
with:
31+
dotnet-version: '9.0.x'
2832
- name: Setup .NET 8.0
2933
uses: actions/setup-dotnet@v4
3034
with:
3135
dotnet-version: '8.0.x'
32-
- name: Setup .NET 9.0
36+
- name: Setup .NET 6.0
3337
uses: actions/setup-dotnet@v4
3438
with:
35-
dotnet-version: '9.0.x'
39+
dotnet-version: '6.0.x'
3640

3741
# CI debug information
3842
- name: Version Information
@@ -61,7 +65,7 @@ jobs:
6165
fail-fast: false
6266
matrix:
6367
os: [windows-latest, ubuntu-22.04, macos-14]
64-
framework: ['net462', 'net6.0', 'net8.0']
68+
framework: ['net462', 'net6.0', 'net8.0', 'net10.0']
6569

6670
steps:
6771
# Prerequisites
@@ -70,18 +74,22 @@ jobs:
7074
submodules: true
7175

7276
# Setup .NET
73-
- name: Setup .NET 6.0
77+
- name: Setup .NET 10.0
7478
uses: actions/setup-dotnet@v4
7579
with:
76-
dotnet-version: '6.0.x'
80+
dotnet-version: '10.0.x'
81+
- name: Setup .NET 9.0
82+
uses: actions/setup-dotnet@v4
83+
with:
84+
dotnet-version: '9.0.x'
7785
- name: Setup .NET 8.0
7886
uses: actions/setup-dotnet@v4
7987
with:
8088
dotnet-version: '8.0.x'
81-
- name: Setup .NET 9.0
89+
- name: Setup .NET 6.0
8290
uses: actions/setup-dotnet@v4
8391
with:
84-
dotnet-version: '9.0.x'
92+
dotnet-version: '6.0.x'
8593

8694
# Build & Test
8795
- name: Build

.vsts-ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,18 @@ jobs:
120120
osName: Windows
121121
imageName: windows-latest
122122
framework: net8.0
123+
linux_net10_0:
124+
osName: Linux
125+
imageName: ubuntu-22.04
126+
framework: net10.0
127+
macos_net10_0:
128+
osName: macOS
129+
imageName: macOS-14
130+
framework: net10.0
131+
windows_net10_0:
132+
osName: Windows
133+
imageName: windows-latest
134+
framework: net10.0
123135

124136
displayName: Test
125137
timeoutInMinutes: 180

0 commit comments

Comments
 (0)