diff options
-rw-r--r-- | appveyor.cmd | 6 | ||||
-rw-r--r-- | src/stub/WixToolset.Burn.props | 1 |
2 files changed, 4 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 |
diff --git a/src/stub/WixToolset.Burn.props b/src/stub/WixToolset.Burn.props index b83d0b1c..38cd333e 100644 --- a/src/stub/WixToolset.Burn.props +++ b/src/stub/WixToolset.Burn.props | |||
@@ -6,6 +6,7 @@ | |||
6 | <BurnExes Include="$(MSBuildThisFileDirectory)..\tools\**\burn.exe" /> | 6 | <BurnExes Include="$(MSBuildThisFileDirectory)..\tools\**\burn.exe" /> |
7 | <None Include="@(BurnExes)"> | 7 | <None Include="@(BurnExes)"> |
8 | <Link>%(RecursiveDir)%(FileName)%(Extension)</Link> | 8 | <Link>%(RecursiveDir)%(FileName)%(Extension)</Link> |
9 | <Visible>False</Visible> | ||
9 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | 10 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
10 | </None> | 11 | </None> |
11 | </ItemGroup> | 12 | </ItemGroup> |