使用MSI构建补丁的方法
我使用基于 Visual Studio 2010 构建的应用程序,并且经常进行一些小修改。
我需要一种方法来发送这些修复程序,例如补丁,我猜是 MSP 文件,而不是完整的 MSI 文件。我该怎么做?有文章或者链接吗?
I work in an application built upon Visual Studio 2010 and often make little fixes.
I need a method to send these fixes like a patch, a MSP file I guess, not the complete MSI file. How can I do this?? Is there an article or a link?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
补丁是两个 MSI 之间的差异。因此,要创建补丁,您需要原始 MSI 包和更新后的包。
请阅读 MSDN 中的以下文章:
我也有一个分步有关如何创建补丁的说明使用 WiX 工具集。
Patch is a difference between two MSIs. So to create a patch, you would need the original MSI package and the updated one.
Read the following articles in the MSDN:
I also have a step-by-step instruction on how to create patches using WiX Toolset.