アプリケーションのセットアップインストーラーを作成したい。WiX 3.6をダウンロードして、vs2012にインストールしました。
- 簡単なwinformアプリケーションを作成する
- WiXセットアッププロジェクトをソリューションに追加します
- 参照を右クリックして、winformアプリケーションをセットアップの参照に追加します
- ソリューションをビルドし、セットアッププロジェクトのデバッグディレクトリに移動して、SetupProject1.exe.msiを実行します。これは機能せず、エラーなしでインストーラーダイアログを閉じます。
セットアッププロジェクトに戻る
- セットアッププロジェクトを右クリックして、プロパティを選択します
- [インストーラー]タブ>[出力タイプ]で、executablefile.exeに変更します
- それをビルドし、デバッグに移動してSetupProject1.exeを実行します-それでも機能しません
なにが問題ですか?これは私のセットアッププロジェクトproduct.wxsです
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="SetupProject1" Language="1033" Version="1.0.0.0" Manufacturer="Natiloos" UpgradeCode="cfc2f4dd-2da5-49e2-9099-96968d75aaa4">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate />
<Feature Id="ProductFeature" Title="SetupProject1" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="SetupProject1" />
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
<!-- <Component Id="ProductComponent"> -->
<!-- </Component> -->
</ComponentGroup>
</Fragment>
インストーラーを正しくビルドするにはどうすればよいですか?