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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -