来自 msi 位置的文件
我想将放置在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件大小和修改日期经过哈希处理并嵌入到 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.