WiX/VisualStudio統合
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(WiX/VisualStudio統合);
*目次 [#z20113b1]
#contents
*関連ページ [#of729f78]
*参考情報 [#b6b23896]
*VisualStudio統合機能の概要 [#l5a46f70]
-WiXをインストールするとVisualStudio統合機能が利用できる。
-例えば[[Using Project References and Variables:http://wi...
-[[Using Built-in WixUI Dialog Sets:http://wixtoolset.org...
WixUIExtensionを参照に追加することで、lightに引数を渡さず...
-[[Specifying Cultures to Build:http://wixtoolset.org/doc...
*基本 [#x754b6ff]
-[[Working in Visual Studio:http://wixtoolset.org/documen...
**プロジェクトの作成 [#b4e4864a]
-既存のソリューションを開、「新しいプロジェクトの追加 > W...
**参照の追加 [#d29ae47b]
-WPFアプリケーションの場合、「References > 参照の追加 > ...
**wxsファイルの編集 [#p015a581]
-Manifactureを埋める。
-TODOと書いてある場所を探し以下のように追加する。
#pre{{
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTA...
<Component Id="ProductComponent" Guid="3D1F2231-09B1...
<File Source="$(var.MyApp.TargetPath)" />
<File Source="$(var.MyApp.TargetPath).config" />
<File Source="$(var.MyApp.TargetDir)\MyLib.dll"...
</Component>
</ComponentGroup>
</Fragment>
}}
**実行 [#m2f7a489]
-SetupProjectの下のbin\Releaseにmsiファイルが作成されてい...
**簡単なUIの追加 [#p97de84b]
-参照の追加。ReferencesからWiXUIExtensionを追加する。
-wxsファイルでFeatureの下に以下を追加
#pre{{
<UIRef Id="WixUI_InstallDir" />
}}
終了行:
&tag(WiX/VisualStudio統合);
*目次 [#z20113b1]
#contents
*関連ページ [#of729f78]
*参考情報 [#b6b23896]
*VisualStudio統合機能の概要 [#l5a46f70]
-WiXをインストールするとVisualStudio統合機能が利用できる。
-例えば[[Using Project References and Variables:http://wi...
-[[Using Built-in WixUI Dialog Sets:http://wixtoolset.org...
WixUIExtensionを参照に追加することで、lightに引数を渡さず...
-[[Specifying Cultures to Build:http://wixtoolset.org/doc...
*基本 [#x754b6ff]
-[[Working in Visual Studio:http://wixtoolset.org/documen...
**プロジェクトの作成 [#b4e4864a]
-既存のソリューションを開、「新しいプロジェクトの追加 > W...
**参照の追加 [#d29ae47b]
-WPFアプリケーションの場合、「References > 参照の追加 > ...
**wxsファイルの編集 [#p015a581]
-Manifactureを埋める。
-TODOと書いてある場所を探し以下のように追加する。
#pre{{
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTA...
<Component Id="ProductComponent" Guid="3D1F2231-09B1...
<File Source="$(var.MyApp.TargetPath)" />
<File Source="$(var.MyApp.TargetPath).config" />
<File Source="$(var.MyApp.TargetDir)\MyLib.dll"...
</Component>
</ComponentGroup>
</Fragment>
}}
**実行 [#m2f7a489]
-SetupProjectの下のbin\Releaseにmsiファイルが作成されてい...
**簡単なUIの追加 [#p97de84b]
-参照の追加。ReferencesからWiXUIExtensionを追加する。
-wxsファイルでFeatureの下に以下を追加
#pre{{
<UIRef Id="WixUI_InstallDir" />
}}
ページ名: