wix 将功能状态保存到属性或在自定义操作中获取功能状态
我可以将功能状态和操作保存到属性值中吗? 就像
如果不可能,我如何在自定义操作中获取功能状态? 仅使用 msi.dll 中的 MsiGetFeautureState?
Can i save feature state and action into property value?
Like <Property id="prop" Value=[!MyFeature]" />
If it's not possible, how i can get feauture state in custom action?
Only using MsiGetFeautureState from msi.dll?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
状态运算符不可格式化,因此,是的,您需要使用 MSI API(或 DTF 中的 FeatureInfo 等包装器)获取状态。
The state operators aren't formattable, so yes, you're expected to get state using the MSI API (or wrappers like FeatureInfo in DTF).
您可以尝试使用自定义操作,将自定义属性设置为格式化文本,例如“1”。然后可以根据功能状态来调节此自定义操作。
这样,仅当功能状态是您想要的状态且不需要使用自定义代码时,才会设置该属性。
You can try using a custom action which sets a custom property to formatted text, for example to "1". This custom action can then be conditioned with the feature state.
This way the property is set only if the feature state is the one you want and you don't need to use custom code.