When I create a Wix project and try to build it with the platform set to 'x64', I get errors in my build output like this:

------ Build started: Project: MyProject, Configuration: Release x64 ------
C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets(444,7): error : The OutputPath property is not set for this project.  Please check to make sure that you have specified a valid Configuration/Platform combination.  Configuration='Release'  Platform='x64'
Done building project "MyProject.wixproj" -- FAILED.
------ Build started: Project: MyProject, Configuration: Debug x64 ------
C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.x\wix2010.targets(444,7): error : The OutputPath property is not set for this project.  Please check to make sure that you have specified a valid Configuration/Platform combination.  Configuration='Debug'  Platform='x64'
Done building project "MyProject.wixproj" -- FAILED.

It claims that there's no output path set for the project, but of course, there is. The output path is set to bin\x64\Debug\ for the debug configuration and bin\x64\Release\ for the release configuration. So what's the error? Also, the error doesn't show up in the Errors window. Now, I know it's a rookie mistake to vlame the compiler, but I'm beginning to wonder... is this a build tool bug, or am I missing something stupid?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 4 down vote accepted

If you open your .wixproj file in a text editor, you will see that your x64 configuration items are at the bottom of the file (below the import of the standard WiX build targets) and your x86 configuration is at the top (above the import). If you shift the XML for the x64 config so that it's adjacent to the x86 config, then you will find that your project builds properly for both platforms.

link|improve this answer
Yes, that was the problem. I moved the two PropertyGroup segments and now the x64 build works. +1 and accepted answer. So I guess this is a Votive issue, I'll update my bug report appropriately. – Tim Long Jun 28 '11 at 10:10
feedback

First make sure you are using the latest version of the WiX toolset (v3.5 or current v3.6 drop). If this still reproduces there it sounds like a bug. Please do file it here: http://sourceforge.net/tracker/?group_id=105970&atid=642714

link|improve this answer
Thanks Rob, I'm using 3.5 but I will update to 3.6 and see if I can repro. If I can, I will file a bug. – Tim Long Jun 15 '11 at 15:19
Filing a bug - still happens in 3.6 – Tim Long Jun 21 '11 at 23:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.