wix を 3.6 にアップデートしたところ、アップグレード後に wix プロジェクトのビルドに失敗しました。
xml の次の行は、エラーをトリガーします。
<ComponentGroupRef Id="Product.Generated"/>
エラーの説明は次のとおりです。
error LGHT0094: Unresolved reference to symbol 'WixComponentGroup:Product.Generated' in section 'Product:*'.
ComponetGroupRef 要素をコメント アウトすると、msi はエラーなしで作成され、3.6 へのアップグレード前と同じように機能するように見えます。
失敗:
<Feature Id="ProductFeature" Title="My.net Server" Level="1">
<ComponentRef Id="My.Server" />
<ComponentRef Id="My.Server.exe.config"/>
<!-- Note: The following ComponentGroupRef is required to pull in generated authoring from project references. -->
<ComponentGroupRef Id="Product.Generated" />
</Feature>
作品:
<Feature Id="ProductFeature" Title="My.net Server" Level="1">
<ComponentRef Id="My.Server" />
<ComponentRef Id="My.Server.exe.config"/>
</Feature>
誰かがこのエラーに光を当てることができますか? 認識または修正する必要がある何かを壊していますか? そのエントリはどれほど重要で、正確には何をしますか?