wix 将功能状态保存到属性或在自定义操作中获取功能状态

发布于 2024-10-29 23:16:02 字数 158 浏览 0 评论 0原文

我可以将功能状态和操作保存到属性值中吗? 就像

如果不可能,我如何在自定义操作中获取功能状态? 仅使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧伤还要旧人安 2024-11-05 23:16:02

状态运算符不可格式化,因此,是的,您需要使用 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).

我的痛♀有谁懂 2024-11-05 23:16:02

您可以尝试使用自定义操作,将自定义属性设置为格式化文本,例如“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文