I'm writing a WiX installer, with a common set of WiX sources for the 32 bit and 64 bit versions of the product.
The question is, should I use different Product Ids for the different versions?
|
I'm writing a WiX installer, with a common set of WiX sources for the 32 bit and 64 bit versions of the product. The question is, should I use different Product Ids for the different versions? |
|||
|
|
|
To answer my own question, which it turns out was actually the wrong one to ask, the MSDN documentation for the ProductCode property says:
Turns out I was confused by the fact that I thought that the product code should never change. This is wrong. Again:
|
|||
|
|
|
First I would make a guard like this for the 32 bit installer:
and this for the 64 bit installer:
But back to your question. I recommend that you set Product Id to "*". This ensures that every build creates a new GUID. You can always find this GUID, if you want to create a patch, using Orca. The important value is the UpgradeCode. This GUID creates a link between versions. I will recommend one UpgradeCode for all your 32 bit installers and another UpgradeCode for all you 64 bit installers. |
|||||||||||
|