WiXは初めてです。オープンソースのJiraSVNプラグインを構築するためにWixW3.7をインストールしました。ただし、Visual Studioでビルドが中断し、次のエラーが発生します。
The RegistryKey element contains an unexpected attribute 'ForceDeleteOnUninstall'.
The RegistryKey element contains an unexpected attribute 'ForceCreateOnInstall'.
これらのエラーは、次の要素を含むproduct.wxsファイルを参照します。
<Component Id="C__Registry" Guid="{40D60013-...D30D5}" Win64="yes">
<RegistryKey Root="HKCR" Key="CLSID\{CF732FD7-...1A7E9D}" ForceDeleteOnUninstall="yes">
<RegistryValue Value="TortoiseSVN Jira Plugin" Type="string" Action="write" />
<RegistryKey Key="Implemented Categories">
<RegistryKey Key="{3494FA92-...5E7831}" ForceCreateOnInstall="yes" /> </RegistryKey>
</RegistryKey>
</Component>
次のような警告も表示されます。
The 'ForceDeleteOnUninstall' attribute is not declared.
The 'ForceCreateOnInstall' attribute is not declared.
WiXのドキュメントで見つけたものから、これらはWiXフレームワークの標準属性です。では、何が原因でそれらが認識されなくなったのでしょうか。それらはどこで宣言されるべきですか?