13

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

这是怎么回事?

4

2 回答 2

25

NETFRAMEWORK40FUL 需要在 FULL 中有双 L :)

于 2012-04-04T13:55:00.610 回答
14

这是.net版本的列表:-)

http://wix.sourceforge.net/manual-wix3/wixnetfxextension.htm

于 2012-09-14T21:09:12.237 回答