Skip to content

Commit 9360a37

Browse files
authored
Add .NET 10 SDK installation to workflow
Added step to install .NET 10 SDK alongside .NET 8 SDK.
1 parent a12d840 commit 9360a37

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ jobs:
2525

2626
steps:
2727
- name: Setup/Install the .NET 8 SDK
28-
id: install-netsdk
28+
id: install-netsdk8
2929
uses: actions/setup-dotnet@v4
3030
with:
3131
dotnet-version: 8.0.x
3232

33+
- name: Setup/Install the .NET 10 SDK
34+
id: install-netsdk
35+
uses: actions/setup-dotnet@v4
36+
with:
37+
dotnet-version: 10.0.x
38+
3339
- if: runner.os == 'Windows'
3440
name: Setup MSBuild
3541
id: setup_msbuild

0 commit comments

Comments
 (0)