如何使用MSI安装项目更新/升级我的Windows应用程序

如何使用MSI安装项目更新/升级我的Windows应用程序

问题描述:

Hello all

我已经开发了一个基于Windows的应用程序,并创建了一个安装项目MSI来部署它。

部署成功,一切都按预期运行。现在我修复了我的应用程序中的一些错误,这些错误导致了几个DLL的变化,我想部署那个2 dll'只有

我如何在MSI安装项目的帮助下做到这一点? br $>


感谢advanace

koolprasad2003

Hello all
i have developed a windows based application and create a setup project MSI to deploy it.
deployment was success and everything runs as expected. Now i have fix some bugs in my application that causes changes in couple of DLL and i want to deploy that 2 dll''s only
How can i do that with the help of MSI setup project ?

Thanks in advanace
koolprasad2003

在Visual Studio中''的安装项目,您必须增加版本数字,VS将为您的包生成新的 ProductCode 并编译新的MSI文件。确保 RemovePreviousVersion 为True。



要创建带补丁的MSI(MSP文件),请查看 Windows Installer XML(WiX) [ ^ ],但我对这个项目没有任何经验。
In the Visual Studio''s Setup project, you have to increase Version number and VS will generate new ProductCode for your package and compile new MSI file. Make sure, that RemovePreviousVersion is True.

For creating MSIs with patches (MSP files), look at the Windows Installer XML (WiX)[^], but I don''t have any experiences with this project.