c# - WIX Autogenerate GUID *? -
let's generate wix xml file product id of *. each component guid use *.
<product id="*" name="xxx" language="1033" version="1.0.0.0" manufacturer="xxx" upgradecode="xxx">
behind scenes * spinning unique guid each time compile wix installer? let's have version 1.0.0 installed machine. recompile wix installer version 1.0.1.
when go install 1.0.1 how wix know 1.0.0 installed , remove files/registry entries , install 1.0.1?
should using * guid or should have unique id/guid in wix xml configuration?
product/@id="*" generates new guid (i.e., randomly). component/@guid="*" calculates guid stays same long file path stays same.
Comments
Post a Comment