WiX检查.NET Framework 4

时间:2012-04-04 12:32:48

标签: wix windows-installer .net-framework-version

我正在尝试检查运行安装程序时是否安装了.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框架(不仅仅是客户端),它仍然会阻止我。

这是怎么回事?

1 个答案:

答案 0 :(得分:25)

NETFRAMEWORK40FUL需要在FULL :)中加倍L