WiX检查.NET Framework 4

前端之家收集整理的这篇文章主要介绍了WiX检查.NET Framework 4前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试执行一个检查,看看运行安装程序时是否安装了.NET框架.

添加了以下内容

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">

        <PropertyRef Id="NETFRAMEWORK40FULL"/>
        <Condition Message="This application requires .NET Framework 4.0. Please install the .NET Framework then run this installer again. Contact support at support@Swiftposter.com if you have further issues.">
            <![CDATA[Installed OR NETFRAMEWORK40FUL]]>
        </Condition>

然而,它总是似乎导致错误,因为它仍然阻止我,即使你有完整的.NET框架安装(不只是客户端).

这是怎么回事?

NETFRAMEWORK40FUL需要双L在FULL 原文链接:https://www.f2er.com/windows/371200.html

猜你在找的Windows相关文章