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 52dc02b commit dbcd17aCopy full SHA for dbcd17a
1 file changed
.appveyor.yml
@@ -1,15 +1,15 @@
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
9
build_script:
10
- - ps: dotnet build -c $env:BUILD_CONFIGURATION
+ - ps: dotnet --version
+ - ps: dotnet restore
+ - ps: dotnet build --no-restore -c Release
11
- ps: dotnet test --results-directory $env:BUILD_ARTIFACT_PATH/test-results /p:SkipBuildVersioning=true
12
- - ps: dotnet pack --no-build -c $env:BUILD_CONFIGURATION /p:PackageOutputPath=$env:BUILD_ARTIFACT_PATH
+ - ps: dotnet pack -c Release --no-build /p:PackageOutputPath=$env:BUILD_ARTIFACT_PATH
13
14
test: false
15
artifacts:
0 commit comments