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.
2 parents 52dc02b + b4cf65f commit 1220f33Copy full SHA for 1220f33
.appveyor.yml
@@ -1,15 +1,18 @@
1
-version: 'Build {build}'
2
image: Visual Studio 2019
3
skip_branch_with_pr: true
4
5
environment:
6
- BUILD_CONFIGURATION: Release
7
BUILD_ARTIFACT_PATH: build-artifacts
8
+install:
+ - choco install dotnet-sdk
9
+
10
build_script:
- - ps: dotnet build -c $env:BUILD_CONFIGURATION
11
+ - ps: dotnet --version
12
+ - ps: dotnet restore
13
+ - ps: dotnet build --no-restore -c Release
14
- ps: dotnet test --results-directory $env:BUILD_ARTIFACT_PATH/test-results /p:SkipBuildVersioning=true
- - ps: dotnet pack --no-build -c $env:BUILD_CONFIGURATION /p:PackageOutputPath=$env:BUILD_ARTIFACT_PATH
15
+ - ps: dotnet pack -c Release --no-build /p:PackageOutputPath=$env:BUILD_ARTIFACT_PATH
16
17
test: false
18
artifacts:
0 commit comments