【发布时间】:2013-03-22 19:06:37
【问题描述】:
在 WiX 项目 (*.wixproj) 中引用项目时,我经常看到代码 sn-p
<ItemGroup>
<ProjectReference Include="..\Foo.Bar\Foo.Bar.csproj">
<Name>Foo.Bar</Name>
<Project>{0bd367ce-5072-4161-8447-ff4deed97bd4}</Project>
<Private>True</Private>
<DoNotHarvest>True</DoNotHarvest>
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
<RefTargetDir>INSTALLLOCATION</RefTargetDir>
</ProjectReference>
</ItemGroup>
谁能向我解释DoNotHarvest、RefProjectOutputGroups 和RefTargetDir 的属性是什么意思?或者指向一些文档?我找不到任何解释这些属性含义的东西(包括 WiX 文档)。
【问题讨论】:
标签: wix msbuild-projectreference