如果在功能选择树中选择了其他功能,是否有任何方法可以强制安装特定功能?那是没有特征是他们的依赖的孩子?
答案 0 :(得分:2)
是的,这应该是可能的,如果您使用Feature元素下的Condition元素,您可以从条件控制功能安装级别。
<Feature Id="MyDependentFeature">
<Condition Level="1">(NOT INSTALLED AND &MyMasterFeature=3) OR (INSTALLED AND !MyMasterFeature=3)</Condition>
</Feature>
<Feature Id="MyMasterFeature">
</Feature>
这里有几点需要解释: