diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-15 22:02:33 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-15 22:04:12 +1000 |
commit | 04f279ab8659c9e4c6c6c796548da01eca1e7615 (patch) | |
tree | e361e49b8c85a774e1ef4e30f0f0c1a7e8b7d367 /appveyor.cmd | |
parent | 259c6b7420c5e95258f563eca14859a182ffe76a (diff) | |
download | wix-04f279ab8659c9e4c6c6c796548da01eca1e7615.tar.gz wix-04f279ab8659c9e4c6c6c796548da01eca1e7615.tar.bz2 wix-04f279ab8659c9e4c6c6c796548da01eca1e7615.zip |
Set Visible to false for the contents of WixToolset.Burn.
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index dbe8e248..cc3f798a 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,11 +1,11 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | nuget restore | 4 | nuget restore || exit /b |
5 | 5 | ||
6 | msbuild -p:Configuration=Release;Platform=x86 | 6 | msbuild -p:Configuration=Release;Platform=x86 || exit /b |
7 | 7 | ||
8 | msbuild -p:Configuration=Release -t:Pack src\stub\stub.vcxproj | 8 | msbuild -p:Configuration=Release -t:Pack src\stub\stub.vcxproj || exit /b |
9 | 9 | ||
10 | @popd | 10 | @popd |
11 | @endlocal \ No newline at end of file | 11 | @endlocal \ No newline at end of file |