Skip to content

Commit 6adc201

Browse files
authored
Merge pull request #257 from w-ahmad/chore/dotnet10
chore: Add .NET 10.0 target
2 parents 81ab190 + 4c3a2f8 commit 6adc201

4 files changed

Lines changed: 26 additions & 4 deletions

File tree

.github/workflows/cd-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4.1.4
14+
15+
- name: Setup .NET Core SDK
16+
uses: actions/setup-dotnet@v5.0.1
17+
with:
18+
dotnet-version: |
19+
8.0.x
20+
9.0.x
21+
10.0.x
1422
1523
- name: Setup MSBuild.exe
1624
uses: microsoft/setup-msbuild@v2

.github/workflows/ci-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ jobs:
1919

2020
- name: Setup MSBuild.exe
2121
uses: microsoft/setup-msbuild@v2
22+
23+
- name: Setup .NET Core SDK
24+
uses: actions/setup-dotnet@v5.0.1
25+
with:
26+
dotnet-version: |
27+
8.0.x
28+
9.0.x
29+
10.0.x
2230
2331
- name: Build
2432
run: |

.github/workflows/ci-docs.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v4.1.4
1313

14-
- name: Setup .NET
15-
uses: actions/setup-dotnet@v4
14+
- name: Setup .NET Core SDK
15+
uses: actions/setup-dotnet@v5.0.1
1616
with:
17-
dotnet-version: '8.0.x'
17+
dotnet-version: |
18+
8.0.x
19+
9.0.x
20+
10.0.x
1821
1922
- name: Install DocFX
2023
run: dotnet tool update -g docfx

src/WinUI.TableView.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
<TargetFrameworks>
44
net8.0-windows10.0.19041.0;
55
net9.0-windows10.0.19041.0;
6+
net10.0-windows10.0.19041.0;
67
net8.0;
78
net9.0;
8-
</TargetFrameworks>
9+
net10.0;
10+
</TargetFrameworks>
11+
<LangVersion>12</LangVersion>
912
<Nullable>enable</Nullable>
1013
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1114
<IsAOTCompatible>true</IsAOTCompatible>

0 commit comments

Comments
 (0)