15

When I compile a wix project, and wix launch the compilation via MSbuild of all the existing projects, can I use "Any CPU" instead of "X86" or "64 bit" ?

If not, how can I compile the projects using "Any CPU" ?

Anas
  • 5,622
  • 5
  • 39
  • 71

2 Answers2

21

If your question is whether you can compile WIXPROJ for Any CPU then the answer is no.

"WiX projects will not be built when building the 'Any CPU' platform because Windows Installer packages are CPU-specific."

The TargetPlatform setting in your WIXPROJ defines the way Windows Installer treats folder variables, registries and GAC etc. For example, the setup project will use the [ProgramFiles64Folder] variable if the TargetPlatform of the setup project is x64; and [ProgramFilesFolder] for x86.

Check this answer, it will be helpful: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Any-CPU-platform-in-wix-3-0-td3441097.html

David Clarke
  • 12,888
  • 9
  • 86
  • 116
Isaiah4110
  • 9,855
  • 1
  • 40
  • 56
3

Step1: Go to solution Properties
Step2: Configuration properties --> Configuration
Step3: Check the build option for WIX project.

Steve Heim
  • 799
  • 12
  • 25
  • +1 This answer is not (really) related to this question. This question was also not what I was looking for. BUT this answer was the correct answer to the question I was looking for. =) :D – Jan Nov 03 '17 at 12:27