ProgramFiles64Folder is installing to \Program Files (x86)\ in WIX Installer
问题 I currently have two WIX projects - one for creating an x86 installer and one for creating an x64 installer. I would like to combine these two projects into just one project which uses variables to control program flow. I have the following: <?if $(var.Platform) = x64 ?> <?define ProductName = "CableSolve Web (64 bit)" ?> <?define Win64 = "yes" ?> <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?> <?else ?> <?define ProductName = "CableSolve Web" ?> <?define Win64 = "no" ?> <