这可能是一个幼稚的问题。我必须手动编辑 .WXS 文件以使其支持从命令行选择功能。
例如,.WXS 文件中有 3 个特征。
<Feature Id="AllFeature" Level='1'>
<Feature Id="Feature1" Level='1'> </Feature>
<Feature Id="Feature2" Level='1'> </Feature>
<Feature Id="Feature3" Level='1'> </Feature>
</Feature>
现在,我想从命令行中选择功能。比如说,如果我输入“msiexec /i install.msi FEATURE=A”,那么会安装“Feature1”和“Feature2”;如果我键入“msiexec/i install.msi FEATURE=B”,则安装“Feature1”和“Feature3”。在这种情况下,“A”映射到特征 1 和 2;“B”映射到特征 1 和 3。
如何在 WIX 中实现这一点?