1

尝试构建依赖于 .NET 4 框架的 Burn 引导程序时,我遇到了一个奇怪的错误。我已经下载了 WiX 设置的源代码并将其包含NetFx.wxs在我的项目中,并在链中添加了 PackageGroupRef,但出现以下错误:

错误 LGHT0103:系统找不到文件 'dotNetFx40_Full_x86_x64.exe'

文件Netfx.wxs

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
    <Fragment>
        <WixVariable Id="WixMbaPrereqPackageId"
                     Value="Netfx4Full" />

        <WixVariable Id="WixMbaPrereqLicenseUrl"
                     Value="NetfxLicense.rtf" />

        <util:RegistrySearch Root="HKLM"
                             Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full"
                             Value="Version"
                             Variable="Netfx4FullVersion" />

        <util:RegistrySearch Root="HKLM"
                             Key="SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full"
                             Value="Version"
                             Variable="Netfx4x64FullVersion"
                             Win64="yes" />

        <PackageGroup Id="Netfx4Full">

            <ExePackage Id="Netfx4Full"
                        Cache="no"
                        Compressed="no"
                        PerMachine="yes"
                        Permanent="yes"
                        Vital="yes"
                        SourceFile="dotNetFx40_Full_x86_x64.exe"
                        DownloadUrl="http://go.microsoft.com/fwlink/?LinkId=164193"
                        DetectCondition="Netfx4FullVersion AND (NOT VersionNT64 OR Netfx4x64FullVersion)" />

        </PackageGroup>
    </Fragment>
</Wix>

我该如何解决这个问题?

4

2 回答 2

7

在制作 msi 时,您需要在本地存在文件 dotNetFx40_Full_x86_x64.exe。WiX 不会将其打包到 msi 中,并且仅在需要时才会在安装时下载。

于 2012-05-03T12:42:10.293 回答
6

通过使用RemotePayload Element<RemotePayload>中记录的选项,您实际上可以在没有 dotNetFx40_Full_x86_x64.exe 文件的情况下构建您的包。

于 2013-01-28T20:45:15.357 回答