Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wix Component with files in different directories

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?

like image 601
Nestor Avatar asked Oct 21 '09 18:10

Nestor


1 Answers

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 :)

like image 191
saschabeaumont Avatar answered Nov 04 '22 16:11

saschabeaumont