I have the scenario where I have 2 DLLs with the same name to be installed to the same location depending on a users selection in the UI.
I have set up the project as per http://www.advancedinstaller.com/user-g ... -name.html link.
The problem I have is that the "Install based on condition" for the features does not seem to see the property value collected in the UI.
My condition is like
Code: Select all
ANSWER = "Y"
Code: Select all
ANSWER = "N"
The features are not attempted to be installed (from log):
If I switch the "Install based on Condition" to "Installed by default" for one of the components the component gets installed correctly so it is just an issue with the condition.MSI (s) (18:50) [10.11:50:963] Feature: MainFeature; Installed: Absent; Request: Local; Action: Local
MSI (s) (18:50) [10.11:50:963] Feature: FEATUREA; Installed: Absent; Request: Null; Action: Null
MSI (s) (18:50) [10.11:50:963] Feature: FEATUREB; Installed: Absent; Request: Null; Action: Null
Please could you help identify what I am doing incorrectly?
Best Regards
Buzz