Should I wrap all the files I want to install in individual components? What is the advantage of putting several files in one component?
|
One reason for "one file per component" is resiliency. When an application is started, Windows Installer can check whether the keypath of any component is missing. If the keypath is missing, the component is reinstalled/repaired. If a component has multiple files, then only one file can be the keypath. In wix you you indicate this by setting Another reason to have "one file per component" is when installing files to locations where they may already be present (e.g. an application upgrade, or when installing to |
|||||||||||
|
|
I follow the Microsoft approach which is also used by InstallShield: http://msdn.microsoft.com/en-us/library/aa368269(VS.85).aspx The above link gives the advantages of this approach. |
|||
|
|