Skip to content

Commit 342d64b

Browse files
Ensure .NET 8, 9, and 10 SDKs are available in CI workflow (#132)
* Initial plan * Update CI workflows to ensure .NET 8, 9, and 10 SDKs are available Co-authored-by: geraldbarre-workleap <[email protected]> * Simplify CI .NET setup and revert publish workflow to original Co-authored-by: geraldbarre-workleap <[email protected]> * Add quotes to global-json-file for consistency Co-authored-by: geraldbarre-workleap <[email protected]> * Update global.json to .NET 10.0.101 and CI to install .NET 9 instead of 10 Co-authored-by: geraldbarre-workleap <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: geraldbarre-workleap <[email protected]>
1 parent eb4d459 commit 342d64b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
with:
3030
fetch-depth: 0
3131

32+
- name: Setup .NET
33+
uses: actions/setup-dotnet@v5
34+
with:
35+
global-json-file: "global.json"
36+
dotnet-version: |
37+
9.0.x
38+
8.0.x
39+
3240
- name: Authenticate to Azure Artifacts
3341
uses: workleap/wl-reusable-workflows/az-artifact-authenticate@main
3442
with:

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.306",
3+
"version": "10.0.101",
44
"rollForward": "latestMinor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)