Skip to content

Commit 8559a45

Browse files
committed
Updating build workflows
1 parent 4b5c095 commit 8559a45

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: Visual Studio 2019
1+
image: Visual Studio 2022
22
skip_branch_with_pr: true
33

44
environment:
@@ -11,9 +11,6 @@ environment:
1111

1212
BUILD_ARTIFACT_PATH: build-artifacts
1313

14-
install:
15-
- choco install dotnet-sdk --version 5.0.200
16-
1714
build_script:
1815
- ps: dotnet --version
1916
- ps: dotnet restore

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@ jobs:
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v2
30-
- name: Setup dotnet 5.0
31-
uses: actions/setup-dotnet@v1
30+
- name: Install .NET SDKs
31+
uses: actions/setup-dotnet@v1.9.0
3232
with:
33-
dotnet-version: '5.0.x'
33+
dotnet-version: |
34+
3.1.x
35+
5.0.x
36+
6.0.x
3437
- name: Install dependencies
3538
run: dotnet restore
3639
- name: Build

0 commit comments

Comments
 (0)