来自 msi 位置的文件

发布于 2024-08-23 06:39:19 字数 456 浏览 3 评论 0原文

我想将放置在 msi 附近的文件复制到程序文件夹中。

我的项目中有下一个代码:

<DirectoryRef Id="Global.txt">
  <Component Id="Global.txt" Guid="263B6F39-BE6B-4b51-8AE4-4D152436F0AE" DiskId="2" NeverOverwrite="yes" Permanent="yes">
    <File Name="Global.txt" Source="./Global.txt" Compressed="no" DiskId="2"/>
  </Component>
</DirectoryRef>

问题是 – 需要将一个名为 Global.txt 的空文件放置在开发计算机上才能构建 msi。

对于我的问题有一个优雅的解决方案吗?

I would like to copy file that placed near the msi to the program file folder.

I have the next code in my project:

<DirectoryRef Id="Global.txt">
  <Component Id="Global.txt" Guid="263B6F39-BE6B-4b51-8AE4-4D152436F0AE" DiskId="2" NeverOverwrite="yes" Permanent="yes">
    <File Name="Global.txt" Source="./Global.txt" Compressed="no" DiskId="2"/>
  </Component>
</DirectoryRef>

The problem is – that an empty file named Global.txt need to be placed at the development machine in order to build the msi.

Is there an elegant solution for my problem?

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

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

发布评论

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

评论(1

小草泠泠 2024-08-30 06:39:19

文件大小和修改日期经过哈希处理并嵌入到 MSI 中,如果您希望让客户在创建 MSI 后编辑 Global.txt,则需要更新 MSI 构建后。

请参阅 替换 MSI 内小文件的最简单解决方案? 一种解决方案。

The filesize and modification date is hashed and embedded in the MSI, you will need to update the MSI post-build if you're looking to have your customers edit the Global.txt after the MSI has been created.

See Simplest solution to replace a tiny file inside an MSI? for one solution.

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