【发布时间】:2014-05-07 21:38:02
【问题描述】:
在我的 WIX 项目中,我想使用被引属性。 以下被引属性运行良好
<PropertyRef Id="NETFRAMEWORK45"/>
<Condition Message="You must install .Net Framework 4.5">
<![CDATA[Installed OR NETFRAMEWORK45]]>
</Condition>
<PropertyRef Id="VersionNT64"/>
<Condition Message="This application cannot be running on 32 bit architechure">
<![CDATA[Installed OR VersionNT64]]>
</Condition>
但其他属性使用我的调试提交以下消息:
“错误 1 未解决对‘Product:*’部分中符号‘Property:MsiNTProductType’的引用” 例如:
顺便说一句,WixNetFxExtension 存在。
【问题讨论】:
-
我不知道您为什么发布了一个有效的属性示例,但您没有发布引用 MsiNTProductType 的实际失败内容。
标签: wix windows-installer