将属性值发送到 Wix 扩展方法
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
属性仅在运行时可用,而不是通过解析源本身。
Properties are only available at runtime, other than by parsing source itself.