If so, what is the appropriate way to specify an x64 build?
In my .wxs file, I have something like this:
<Package Description ="$(var.pkgDescription)"
Comments ='Produced: Sun 17 April 2011'
Manufacturer ="Mfr name here"
InstallerVersion ='200'
Platform ='$(var.Platform)'
Compressed ='yes' />
...where I use -dPlatform=x64
on the candle.exe command line. This seems to work.
But, in the WIX3 documentation, it states that both the Platform
attribute and the Platforms
attribute are deprecated. It does not describe what replaces them, or what developers should use in place of these.
When I remove the Platform attribute from the above element, and run the build, I get an ICE80 error:
Product.wxs(285) : error LGHT0204 : ICE80: This package contains 64 bit component 'C.Textfiles' but the Template Summary Property does not contain Intel64 or x64.
It builds successfully if I use the Platform
attribute, but because of the documentation, I am unsure if this is correct.
What is the proper way to build an x64 MSI??