WiX 自动文件包含

发布于 2024-08-08 06:29:15 字数 230 浏览 2 评论 0 原文

有没有办法根据目录结构自动包含文件?

我不想使用文件 ID 选项卡添加每个文件名。

我的构建过程创建所需的目录结构:

ProductName
           Directory1
           Directory2
           Directory3
           Directory4

如何添加这些目录及其子目录?

Is there a way to include files automatically based on directory structure?

I do not want to add each and every file name with file Id tab.

My build process create the required directory structure:

ProductName
           Directory1
           Directory2
           Directory3
           Directory4

How can I add those directories and their subdirectories?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

倒带 2024-08-15 06:29:15

还有 Paraffin jrobbins" rel="nofollow noreferrer">约翰·罗宾斯。它有一些不错的功能:

我对 PARAFFIN.EXE 的目标是,它可以立即构建可使用的 WiX 片段,而您无需大惊小怪。我希望 PARAFFIN.EXE 满足以下最初为目录创建 .WXS 片段的要求:

  • PARRAFIN.EXE 为组件、目录和文件元素 Id 属性创建了唯一值,因此您不必担心大型项目之间的冲突
  • PARAFIN.EXE 在输出文件中创建一个 ComponentGroup 元素,文件中的所有 Component 元素均自动使用 ComponentRef 值指定
  • 您可以选择排除添加到 .WXS 片段中的特定文件扩展名
  • 您可以选择通过指定部分名称来排除目录
  • 您可以选择指定是否希望为所有组件自动生成 GUID 值
  • 您可以选择为每个组件指定多个文件(默认为每个组件一个文件)
  • 您可以选择指定不希望递归除指定目录之外的目录
  • 在设置 File 元素 - - Source 属性时,您可以选择指定目录名称的别名,这样输出 .WXS 文件中就不会出现硬编码的驱动器和目录名称

使用 PARAFFIN.EXE 创建 .WXS 片段后,您不想手动编辑该片段,因此我希望 PARAFFIN.EXE 满足以下从现有文件创建更新的输出文件的要求.WXS片段:

  • 更新后的输出将写入 .PARAFFIN 文件,因此原始 .WXS 片段不会受到干扰
  • 在更新 PARAFFIN.EXE 创建的文件时,会自动设置创建初始 .WXS 片段时指定的所有命令行选项
  • 找到的任何新目录和文件都会自动添加到输出文件中
  • 不再属于目录结构的任何目录和文件都将从输出文件中删除

There is also Paraffin by John Robbins. It has some nice features:

My goal for PARAFFIN.EXE was that it would build immediately consumable WiX fragments with a minimum of fuss on your part. I wanted PARAFFIN.EXE to meet the following requirements for initially creating a .WXS fragment for a directory:

  • PARRAFIN.EXE created unique values to the Component, Directory, and File elements Id attribute so you do not have to worry about conflicts across large projects
  • PARAFIN.EXE creates a ComponentGroup element in the output file with all Component elements in the file automatically specified with ComponentRef values
  • You can optionally exclude specific file extensions from being added to the .WXS fragment
  • You can optionally exclude directories from inclusion by specifying a partial name
  • You can optionally specify if you want GUID values automatically generated for all components
  • You can optionally specify multiple files per Component (the default is one file per component)
  • You can optionally specify that you do not want to recurse directories other than the one specified
  • You can optionally specify an alias for the directory name when setting the File element - - Source attribute so you do not have hard coded drive and directory names in the output .WXS file

After you've created a .WXS fragment with PARAFFIN.EXE, you don't want to have to edit the fragment manually, so I wanted PARAFFIN.EXE to meet the following requirements for creating an updated output file from an existing .WXS fragment:

  • The updated output is written to a .PARAFFIN file so the original .WXS fragment is not disturbed
  • All command line options specified when creating the initial .WXS fragment are automatically set when updating a file created by PARAFFIN.EXE
  • Any new directories and files found are automatically added to the output file
  • Any directories and files that are no longer part of the directory structure are removed from the output file
失而复得 2024-08-15 06:29:15

不,不会自动。然而,有一些工具(对于 Wix 称为“tallow”,对于 Wix3 称为“heat”)可以扫描目录并为您创建一个 Wix 片段(一个单独的 WiX *.wxs 文件)。然后您可以编译该“filelist.txt”。 wxs”文件(或任何你称之为的文件)到你的 WiX 安装中。

请参阅此页面以获取 WiX3 heat 文档,该网站上还应该有一个 WiX2 对应的牛脂文档

No, not automatically. There are some tools however (called "tallow" for Wix" or "heat" for Wix3) that will scan a directory and create a Wix fragment (a separate WiX *.wxs file) for you. You can then compile that "filelist.wxs" file (or whatever you call it) into your WiX install.

See this page for the WiX3 heat documentation and there should also be a WiX2 equivalent for tallow on that site.

Marc

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