Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit 134c7dd

Browse files
committed
Update .NET SDK version to 9.0.0 in global.json
Updated the `sdk` version in the `global.json` file from `7.0.0` to `9.0.0` to target the newer .NET SDK version. This change ensures the project uses the latest features, improvements, and fixes available in .NET SDK 9.0.0. The `rollForward` setting remains `latestMajor`, and `allowPrerelease` is still set to `false`.
1 parent c7123ae commit 134c7dd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/setup-dotnet@v5
3737
with:
3838
dotnet-version: |
39-
7.0.x
39+
9.0.x
4040
4141
# Restore dependencies
4242
- name: Restore dependencies

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/setup-dotnet@v5
3131
with:
3232
dotnet-version: |
33-
7.0.x
33+
9.0.x
3434
3535
# Restore dependencies
3636
- name: Restore dependencies

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": "7.0.0",
3+
"version": "9.0.0",
44
"rollForward": "latestMajor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)