views:

180

answers:

1

Can I create a component with Wix that has files in different directories/subdirectories? Or all the files of a component should be in the same directory?

How do I set the XML for that?

+1  A: 

No.

See the Windows Installer documentation on Components... one of the main rules is that Each component must be stored in a single folder.

Component rules are very easy to violate, the best solution is to stick to one file per component if there is any chance at all any of the files will change in a later version.

Putting multiple files into a component can cause headaches down the line, avoid it if possible unless you have a valid reason - and having easier to maintain WiX sources isn't a valid reason :)

sascha

related questions