I want to install a product with some dll with Wix 3.5. These dll are determined during the msi installation through a radio buttons group. I have :
- a (fragment) wxs for myDllv1
- a (fragment) wxs for myDllv2
- a (UI fragment) wxs with the RadioButtonGroup to choose between myDll v1 and myDll v2 with a property INSTALLTYPE
- a main wxs file which installs the correct version of myDll.
Problem : I have another set of dll to add and I want to modify as less files as possible. I don't want to introduce bugs and I want to keep things decoupled.
I would like to modify only the UI fragment with the radio buttons and add a myDllv3 fragment (without doing any changes to my main wxs file, so no condition in that file..).
Is it possible?