Skip to content

Commit 1220f33

Browse files
authored
Merge pull request #8 from TurnerSoftware/fix-missing-deps-json
Fix missing deps json
2 parents 52dc02b + b4cf65f commit 1220f33

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.appveyor.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
version: 'Build {build}'
21
image: Visual Studio 2019
32
skip_branch_with_pr: true
43

54
environment:
6-
BUILD_CONFIGURATION: Release
75
BUILD_ARTIFACT_PATH: build-artifacts
86

7+
install:
8+
- choco install dotnet-sdk
9+
910
build_script:
10-
- ps: dotnet build -c $env:BUILD_CONFIGURATION
11+
- ps: dotnet --version
12+
- ps: dotnet restore
13+
- ps: dotnet build --no-restore -c Release
1114
- 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
15+
- ps: dotnet pack -c Release --no-build /p:PackageOutputPath=$env:BUILD_ARTIFACT_PATH
1316

1417
test: false
1518
artifacts:

0 commit comments

Comments
 (0)