将属性值发送到 Wix 扩展方法

发布于 2024-12-19 05:53:34 字数 313 浏览 2 评论 0原文

我有一个 wix 属性

<Property Id="VAR1" Value="aValue" />

我想将此值发送到我的扩展方法中

<Property Id="TEST" Value="$(extension.GetResult(VAR1)"  />

我想将值 aValue 发送到 GetResult 方法中,但似乎找不到 将 VAR1 转换为“aValue”的正确语法

该扩展是预处理器扩展,属性 VAR1 将通过用户界面设置...

I have a wix property

<Property Id="VAR1" Value="aValue" />

And i want to send this value into my Extension method

<Property Id="TEST" Value="$(extension.GetResult(VAR1)"  />

I want to send the value aValue into the GetResult method, but cant seem to find
the correct syntax to convert VAR1 to 'aValue'

The extension is a preprocessor extension and the Property VAR1 will get set via the user interface...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

放飞的风筝 2024-12-26 05:53:34

属性仅在运行时可用,而不是通过解析源本身。

Properties are only available at runtime, other than by parsing source itself.

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