Skip to content

Instantly share code, notes, and snippets.

@fearthecowboy
Created January 6, 2015 01:38
Show Gist options
  • Select an option

  • Save fearthecowboy/aa0326909f2f189bb3ea to your computer and use it in GitHub Desktop.

Select an option

Save fearthecowboy/aa0326909f2f189bb3ea to your computer and use it in GitHub Desktop.
Fixing wixproj file to work inside VS
<!-- When you use variable-based <BindInputPaths>
you have to make sure that you add <InProject>false</InProject> in the element
otherwise, VS tries to expand out the values and fails.
-->
<ItemGroup>
<BindInputPaths Include="$(OutputPath)">
<InProject>false</InProject>
</BindInputPaths>
<BindInputPaths Include="$(SolutionDir)">
<InProject>false</InProject>
</BindInputPaths>
</ItemGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment