wix - 复制整个目录及其所有内容
我的 wix 安装程序需要将目录内容复制到目标文件夹。我知道 Directory 元素有一个 FileSource 属性。我尝试了这样的操作:
<DirectoryRef Id="DIRECTORY" FileSource="{var.Dir}">
<Component Id="Dir" Guid="*" >
<CreateFolder/>
</Component>
</DirectoryRef>
这不是从预处理器变量中获取文件或子目录。
有没有其他方法可以实现这一目标?
My wix installer needs the contents of a directory to be copied to a destination folder. I understand that the Directory element has a FileSource attrib. I tried something like this:
<DirectoryRef Id="DIRECTORY" FileSource="{var.Dir}">
<Component Id="Dir" Guid="*" >
<CreateFolder/>
</Component>
</DirectoryRef>
This is not picking up the files or sub-directories from the preprocessor variable.
Are there any alternate ways to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,除非您使用自定义操作。 WiX 喜欢单独跟踪每个文件。您可以使用
heat
为您生成目录列表。No, not unless you use a custom action. WiX likes for every file to be tracked individually. You can use
heat
to generate the directory listing for you.在 MSBuild 中使用 heat.exe 或 HeatTask。这是今天做事的唯一方法。
Use heat.exe or HeatTask in MSBuild. That's the only way to do things today.