Skip to content

Commit f23ea75

Browse files
Update build scripts to use .NET 9 SDK
1 parent 9970825 commit f23ea75

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/master-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
steps:
2323
- name: Checkout source
2424
uses: actions/checkout@v4
25-
- name: Setup .NET 8.0.x
25+
- name: Setup .NET 9.0.x
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: '8.0.x'
28+
dotnet-version: '9.0.x'
2929
- name: Restore solution
3030
run: dotnet restore
3131
- name: Build solution

.github/workflows/master-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
echo "VERSION=${VERSION#v}" >> $GITHUB_ENV
1717
- name: Checkout source
1818
uses: actions/checkout@v4
19-
- name: Setup .NET 8.0.x
19+
- name: Setup .NET 9.0.x
2020
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: '8.0.x'
22+
dotnet-version: '9.0.x'
2323
- name: Restore solution
2424
run: dotnet restore
2525
- name: Build solution (pre-release)

.github/workflows/master-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020
- name: Checkout source
2121
uses: actions/checkout@v4
22-
- name: Setup .NET 8.0.x
22+
- name: Setup .NET 9.0.x
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: '8.0.x'
25+
dotnet-version: '9.0.x'
2626
- name: Restore solution
2727
run: dotnet restore
2828
- name: Build solution

0 commit comments

Comments
 (0)