0

我无法理解 wix 文档。我创建了一个简单的安装程序,允许用户为应用程序选择目标文件夹。它看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="AppName" Language="1033" Version="1.0.0.0" Manufacturer="Manufacturer" UpgradeCode="guid">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <MediaTemplate />

    <Feature Id="ProductFeature" Title="SetupProjectFeature" Level="1">
        <ComponentGroupRef Id="ProductComponents" />
    </Feature>

    <Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" />
    <UIRef Id="WixUI_InstallDir"/>

</Product>

<Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFilesFolder">
            <Directory Id="INSTALLFOLDER" Name="OeeCoach" />
        </Directory>
    </Directory>
</Fragment>

<Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
        <!-- TODO: Insert files, registry keys, and other resources here. -->
        <Component Id="EntityFramework" Guid="guid">
            <File Id="EntityFramework.dll" Source="../App/bin/Release/EntityFramework.dll" KeyPath="yes" />
        </Component>
        <Component Id="MvvmLight.Extras" Guid="guid">
            <File Id="GalaSoft.MvvmLight.Extras.WPF4.dll" Source="../App/bin/Release/GalaSoft.MvvmLight.Extras.WPF4.dll" KeyPath="yes" />
        </Component>
    </ComponentGroup>
</Fragment>
</Wix>

现在我需要检查 .net 4 及其先决条件,但我不明白这样做很热。文档说我需要使用 Bundle 元素,但是当它与同一 wix 文件中的 Product 元素一起使用时,编译器似乎会抱怨。

任何帮助表示赞赏。

4

1 回答 1

1

引导程序是与您的设置项目分开的项目。如果您使用的是 Visual Studio,请将新项目添加到您的解决方案并选择 Bootstrapper 项目(而不是安装项目)。

于 2012-10-25T10:54:03.223 回答