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 に答える