Hi ....
I have the following requirement and I want to know if it doable or not using visual studio 2005....
I have multipleupdates of my web application and I want to makeEachupdateof this application in Single Merge Module and then use One web setup projectto installthese merge modules....
the updates will be installed on the target PC in a sequenceand if one oftheseupdates doesn't installed, the web setup project should install it andthen install next ones...
here is the example;
Suppose that I have the following Merge Modules:
1- (Update 1)
2- (Update 2)
3- (Update 3)
andI want to useOne web setup project, which is for example (MergeModulesInstaller) to install the perviousupdates on the target PC... suppose that I have PC1 where I want to install my application,, and this PC alreday has (Update 1) version,,
when I run my (MergeModulesInstaller) on PC1, I want the web setup package checks theupdates that are already installed on it and then install the new Ones... so it will detect that (Update1) already installed and then install (Update 2) and then (Update 3)
now suppose that I have new update, let's say (Update 4) and I want to use the same web setup project (MergeModulesInstaller) to install the newupdate (Update 4) on (PC1) ,,, so I need to create a new merge module (Update 4)and then add it to the (MergeModulesInstaller) web setup project,,,
when I run this setup on (PC1), the setup package will install only (Update 4)....
my Question: how can I do that using the vs2005 deplyment project??
Thanks in advance for any help or suggestion...