Created
January 6, 2015 01:38
-
-
Save fearthecowboy/aa0326909f2f189bb3ea to your computer and use it in GitHub Desktop.
Fixing wixproj file to work inside VS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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