私は Wix をまったく使用したことがなく、これを任されています。
インストーラーは、「アプリケーションには Reportviewer が必要です」というメッセージを表示する必要があります。reportViewer がインストールされているかどうかを確認し、そうでない場合は、インストール自体の開始時にメッセージをスローする必要があります。
これは私がやろうとしていることです(まだ詳細を理解していないので、ランダムに試してみてください)
<Condition Message="This application requires ReportViewer.">
<![CDATA[ReportViewerV10 OR ReportViewerWow64V10]]>
</Condition>
<util:RegistrySearch
Root="HKLM"
Key="SOFTWARE\Microsoft\ReportViewer\v10.0"
Value="Install"
Variable="ReportViewerV10"
Win64="yes"
/>
<util:RegistrySearch
Root="HKLM"
Key="SOFTWARE\Wow6432Node\Microsoft\ReportViewer\v10.0"
Value="Install"
Variable="ReportViewerWow64V10"
Win64="yes"
/>