Skip to content

Commit 863a434

Browse files
authored
Add .NET Core SDK setup to CI workflow
Added setup for .NET Core SDK versions 8.0.x, 9.0.x, and 10.0.x.
1 parent 9a94d4c commit 863a434

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.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: |

0 commit comments

Comments
 (0)