Skip to content

Commit 3c8926d

Browse files
committed
Setup .NET 8 on CI
1 parent 45de0cf commit 3c8926d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,12 @@ jobs:
6363
with:
6464
global-json-file: global.json
6565

66-
- name: Setup .NET SDK 6.0
66+
- name: Setup .NET SDK 6.0, 8.0
6767
uses: actions/setup-dotnet@v3
6868
with:
69-
dotnet-version: 6.0.x
69+
dotnet-version: |
70+
6.0.x
71+
8.0.x
7072
7173
- name: .NET Information
7274
run: dotnet --info

appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ install:
4949
- git reset --hard
5050
- ps: if ($isWindows) { tools\dotnet-install.ps1 -JSonFile global.json }
5151
- ps: if ($isWindows) { tools\dotnet-install.ps1 -Runtime dotnet -Version 6.0.11 -SkipNonVersionedFiles }
52+
- ps: if ($isWindows) { tools\dotnet-install.ps1 -Runtime dotnet -Version 8.0.11 -SkipNonVersionedFiles }
5253
- sh: ./tools/dotnet-install.sh --jsonfile global.json
5354
- sh: ./tools/dotnet-install.sh --runtime dotnet --version 6.0.11 --skip-non-versioned-files
55+
- sh: ./tools/dotnet-install.sh --runtime dotnet --version 8.0.11 --skip-non-versioned-files
5456
- sh: export PATH="$HOME/.dotnet:$PATH"
5557
before_build:
5658
- dotnet --info

0 commit comments

Comments
 (0)