Skip to content

Commit 10611fb

Browse files
committed
Use .NET SDK 9.0
1 parent dd09c01 commit 10611fb

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.build/Solution.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ RocketSurgeonGitHubActionsConfiguration configuration
100100
.Jobs.OfType<RocketSurgeonsGithubActionsJob>()
101101
.First(z => z.Name.Equals("Build", StringComparison.OrdinalIgnoreCase))
102102
.ConfigureStep<CheckoutStep>(step => step.FetchDepth = 0)
103-
.UseDotNetSdks("3.1", "6.0", "8.0")
103+
.UseDotNetSdks("3.1", "6.0", "8.0", "9.0")
104104
.AddNuGetCache()
105105
.AddVscodeExtensionTests()
106106
.PublishLogs<Solution>()

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,15 @@ jobs:
9797
- name: 🔨 Use .NET Core 6.0 SDK
9898
uses: actions/[email protected]
9999
with:
100-
dotnet-version: '6.0.x'
100+
dotnet-version: '6.0.x'
101101
- name: 🔨 Use .NET Core 8.0 SDK
102102
uses: actions/[email protected]
103103
with:
104104
dotnet-version: '8.0.x'
105+
- name: 🔨 Use .NET Core 9.0 SDK
106+
uses: actions/[email protected]
107+
with:
108+
dotnet-version: '9.0.x'
105109
- name: 🎁 dotnet tool restore
106110
run: |
107111
dotnet tool restore

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.404",
3+
"version": "9.0.100",
44
"rollForward": "latestMinor"
55
}
6-
}
6+
}

0 commit comments

Comments
 (0)