Compile wix project using “Any CPU” instead of “X86”

戏子无情 提交于 2019-12-04 02:00:55
Isaiah4110

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

Sagar Ghosh

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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!