diff options
Diffstat (limited to '')
-rw-r--r-- | appveyor.cmd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 63bf9301..6de09dad 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,13 +1,13 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _C=Release | ||
3 | 4 | ||
4 | nuget restore || exit /b | 5 | nuget restore || exit /b |
5 | 6 | ||
6 | msbuild -p:Configuration=Release .\src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b | 7 | msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b |
8 | dotnet test -c %_C% --no-build src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b | ||
7 | 9 | ||
8 | msbuild -t:Pack -p:Configuration=Release .\src\WixToolset.Core.Native\WixToolset.Core.Native.csproj || exit /b | 10 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Core.Native\WixToolset.Core.Native.csproj || exit /b |
9 | |||
10 | msbuild -t:Pack -p:Configuration=Release .\src\wixnative\wixnative.vcxproj || exit /b | ||
11 | 11 | ||
12 | @popd | 12 | @popd |
13 | @endlocal \ No newline at end of file | 13 | @endlocal \ No newline at end of file |