wix - 复制整个目录及其所有内容

发布于 2024-11-25 18:49:59 字数 325 浏览 4 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月下客 2024-12-02 18:49:59

不,除非您使用自定义操作。 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.

岁月苍老的讽刺 2024-12-02 18:49:59

在 MSBuild 中使用 heat.exe 或 HeatTask。这是今天做事的唯一方法。

Use heat.exe or HeatTask in MSBuild. That's the only way to do things today.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文