Re: [WiX-users] way to create merge module and avoiding code duplication

2006-11-15 Thread Bob Arnson
vij wrote: > If I do that, I have to make the complete merge module as a single > feature in my MSI and I will not be able to classify my > components(which are part of merge module) into features, so I don't > want to do that. Create multiple merge modules, one per feature. -- sig://boB htt

Re: [WiX-users] way to create merge module and avoiding code duplication

2006-11-15 Thread Rob Hamflett
To build the merge module, you could run a script over the wix files and rewrite them out to disk, using a RegExp to remove the DiskId bits. You would then use these new files as the source files for your merge module. Rob vij wrote: > If I do that, I have to make the complete merge module a

Re: [WiX-users] way to create merge module and avoiding code duplication

2006-11-15 Thread vij
If I do that, I have to make the complete merge module as a single feature in my MSI and I will not be able to classify my components(which are part of merge module) into features, so I don't want to do that. Is there any other way? thanks Vij Bob Arnson <[EMAIL PROTECTED]> w

Re: [WiX-users] way to create merge module and avoiding code duplication

2006-11-14 Thread Bob Arnson
vij wrote: > In our project we have to create MSI package of our product and also > need to distribute our product as redistributable merge module. Build the merge module with your components and then consume the merge module in your product .msi. -- sig://boB http://bobs.org --