Skip to content

Commit

Permalink
Issue #24 - Suppress ICE Warnings
Browse files Browse the repository at this point in the history
In order to get the package building on MyGet, we have to stop the ICE
warnings.  This is detailed here:

http://stackoverflow.com/questions/1064580/wix-3-0-throws-error-217-while-being-executed-by-continuous-integration

Up shot,  we have to use the override, as we can't get admin permissions
on the build server.
  • Loading branch information
gep13 committed Feb 14, 2013
1 parent 806598d commit 4ce5bbb
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions Setup_ChocolateyGUI/Setup_ChocolateyGUI.wixproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SuppressValidation>true</SuppressValidation>
</PropertyGroup>
<PropertyGroup>
<WIXRoot>SharedBinaries\WiX\Current\</WIXRoot>
<WIX Condition="'$(SolutionRoot)' == ''">.\..\$(WIXRoot)</WIX>
Expand Down Expand Up @@ -54,12 +57,12 @@
</Content>
</ItemGroup>
<Import Project="$(WixTargetsPath)" />
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

0 comments on commit 4ce5bbb

Please sign in to comment.