Set Visible to false for the contents of WixToolset.Burn.
Sean Hall committed
Jun 15, 2020 at 22:02 UTC
04f279ab8659c9e4c6c6c796548da01eca1e7615
2 files changed
+4
-3
appveyor.cmd
+3
-3
@@ -1,11 +1,11 @@
1
@setlocal
2
@pushd %~dp0
3
4
-nuget restore
4
+nuget restore || exit /b
5
6
-msbuild -p:Configuration=Release;Platform=x86
6
+msbuild -p:Configuration=Release;Platform=x86 || exit /b
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
10
@popd
11
@endlocal
\ No newline at end of file
src/stub/WixToolset.Burn.props
+1
@@ -6,6 +6,7 @@
6
<BurnExes Include="$(MSBuildThisFileDirectory)..\tools\**\burn.exe" />
7
<None Include="@(BurnExes)">
8
<Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
9
+ <Visible>False</Visible>
10
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
11
</None>
12
</ItemGroup>