我正在使用Wix Toolset v3.10.3并且我试图让我的MSI检查机器上是否安装了.Net 4.6.2
原文链接:https://www.f2er.com/windows/363311.html<PropertyRef Id="WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED"/>
然后做这样的事情
<Condition Message="This application requires .NET Framework 4.6.2. Please install the .NET Framework then run this installer again. If you require assistance,please contact [company name] support"> <![CDATA[Installed OR WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED]]> </Condition>
但是当我构建时,我收到以下错误
Unresolved reference to symbol 'Property:WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED' in section 'Product:*'.
有没有人对这个有任何想法?我可以看到.net 4.X系列的不同之处,但我看不出我做错了什么?