aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 12:51:24 -0700
committerRob Mensching <rob@firegiant.com>2020-06-27 13:30:19 -0700
commitd02ccdc0bd962289d59d83497e19a31b974c9631 (patch)
tree8ce1a4f82612dc5450bb48deebb1f280501e370f /appveyor.cmd
parentdb8195b4db974a20eef3468c4bdd48a935970e30 (diff)
downloadwix-d02ccdc0bd962289d59d83497e19a31b974c9631.tar.gz
wix-d02ccdc0bd962289d59d83497e19a31b974c9631.tar.bz2
wix-d02ccdc0bd962289d59d83497e19a31b974c9631.zip
Improve build batch file
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd9
1 files changed, 5 insertions, 4 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 79950868..3a7e2d72 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,13 +1,14 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3 3
4nuget restore 4nuget restore || exit /b
5 5
6msbuild -p:Configuration=Release -t:Restore 6msbuild -p:Configuration=Release -t:Restore || exit /b
7 7
8msbuild -p:Configuration=Release src\test\WixToolsetTest.DirectX\WixToolsetTest.DirectX.csproj 8msbuild -p:Configuration=Release src\test\WixToolsetTest.DirectX\WixToolsetTest.DirectX.csproj || exit /b
9dotnet test -c Release --no-build src\test\WixToolsetTest.DirectX || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.DirectX.wixext.csproj 11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.DirectX.wixext.csproj || exit /b
11 12
12@popd 13@popd
13@endlocal \ No newline at end of file 14@endlocal \ No newline at end of file