We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5c095 commit 8559a45Copy full SHA for 8559a45
2 files changed
.appveyor.yml
@@ -1,4 +1,4 @@
1
-image: Visual Studio 2019
+image: Visual Studio 2022
2
skip_branch_with_pr: true
3
4
environment:
@@ -11,9 +11,6 @@ environment:
11
12
BUILD_ARTIFACT_PATH: build-artifacts
13
14
-install:
15
- - choco install dotnet-sdk --version 5.0.200
16
-
17
build_script:
18
- ps: dotnet --version
19
- ps: dotnet restore
.github/workflows/build.yml
@@ -27,10 +27,13 @@ jobs:
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v2
30
- - name: Setup dotnet 5.0
31
- uses: actions/setup-dotnet@v1
+ - name: Install .NET SDKs
+ uses: actions/setup-dotnet@v1.9.0
32
with:
33
- dotnet-version: '5.0.x'
+ dotnet-version: |
34
+ 3.1.x
35
+ 5.0.x
36
+ 6.0.x
37
- name: Install dependencies
38
run: dotnet restore
39
- name: Build
0 commit comments