I want create Wix installer to install, Client, Server or Both based on User selection.
My question is How can I restrict installing client when user selects Server (it gets installed as it has Level=1). I have customizied WixUI_Mondo.
I tried using Condition for Component but no luck.
<Feature Id="Client" Level="1">
<ComponentRef Id="ClientMainExecutable" />
<ComponentRef Id="ClientConfigurations" />
</Feature>
<Feature Id="Server" Level="3">
<ComponentRef Id="ServerExecutable" />
<ComponentRef Id="ServerConfigurations" />
</Feature>
<Feature Id="Both" Level="1000">
</Feature>
</Feature>
<UIRef Id="myWixUI_Mondo" />