これまでのところ、単一のディレクトリからファイルを収集するためにこれを行っていました。
<HeatDirectory DirectoryRefId="INSTALLFOLDER" OutputFile="references.wxs"
Directory="../MyProject/reference1" ComponentGroupName="ref1"
ToolPath="$(WixToolPath)" PreprocessorVariable="var.ref1"
AutogenerateGuids="true">
</HeatDirectory>
以下のように、HeatDirectory を使用して複数のディレクトリから 1 つの .wxs ファイルにファイルを収集するにはどうすればよいですか。
<HeatDirectory OutputFile="references.wxs"
Directory="directory1_Path|Directory2_Path|...." ComponentGroupName="ref1"
ToolPath="$(WixToolPath)" AutogenerateGuids="true">
</HeatDirectory>
それを行う方法はありますか、または wixproject ファイルに複数の HeatDirectory 要素を含める必要がありますか?