我想向我的 in添加一个HeatDirecotry
任务,但我需要 Directory 属性 - 源路径 - 将是一个变量 - 一个预处理器变量,所以我可以动态地提供它。wixproj
Visual Studio
谁能告诉我该怎么做?
谢谢!!!
尝试以下卸载您的项目,然后在 .wixproj 文件中添加以下代码
<Target Name="BeforeBuild">
<HeatDirectory DirectoryRefId="INSTALLFOLDER"
OutputFile="Source.wxs"
Directory="C:\Users\aaa\Desktop\ComponentsFiles"
SuppressRootDirectory="true"
ToolPath="$(WixToolPath)" AutogenerateGuids="true"
ComponentGroupName="SourceComponentGroup"
PreprocessorVariable="var.SourcePath">
</HeatDirectory>
</Target>
然后重新加载项目。在项目属性 SourcePath=C:\Users\aaa\Desktop\ComponentsFiles 的 buils 标记内为预处理器变量添加以下文件