I am using WiX 3.6 and VS2010. I have a 32-bit installation working and I'm trying to get a 64-bit installation working.
- I set the Platform to "x64" in the Configuration Properties.
- I set the Platform attribute in the Package tag to "x64" in the install script.
- I changed the installation directory from "ProgramFilesFolder" to "ProgramFiles64Folder".
- I added the attribute Win64="yes" to each component.
I thought this was enough to generate a 64-bit MSI, but it still insists on installing everything in "Program Files (x86)" instead of "Program Files".
What am I missing?
x64
on the Configuration Properties in thewxs
? – pupenoPackage
element, set thePlatform
attribute tox64
. i.e.<Package ... Platform='x64' ...
– Ferrucciocandle
&light
directly to build an MSI. The build script passes a-dPlatform=x64
parameter on thecandle
command line. – Ferruccio