如何使用 WiX 在不添加文件的情况下进行升级?
我正在使用 WiX 为我们的产品制作 MSI。 该产品将一些可选程序集加载为模块。 这使得我们只需将一个 dll 放入该目录即可收取更多费用!
现在我想要制作一个常见的主要升级 MSI,其中包括所有可能的模块程序集,但仅升级现有的文件,并且不安装丢失的文件。 我怎样才能实现这个目标?
I'm making MSI's with WiX for our product. The product loads some optional assemblies as modules. This allows us to just drop a dll into the directory and charge a bit more!
Now I want to make a common major upgrade MSI that includes all the possile module assemblies but only upgrades files that exist, and doesnt install missing ones. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理想情况下,这些“嵌入式”程序集应与另一个 MSI 一起安装。 这样您只需链接一系列 MSI 即可进行升级。
Ideally those "drop-in" assemblies should have been installed with another MSI. That way you just need to chain a series of MSIs to do upgrades.