I have a huge problem:
I have an old application App1.0.exe. With this Application there is a file called App1.0.exe.config (the App config). Now i made the Version 2.0, with the new Version now there are different Appsettings in the Appconfig. My question is: How i can save the old Appconfig when make an Update Installation?
This try's to solve the problem have failed:
-Read out the old config with BeforeInstall event, save to the context parameters and write in the new config in an Afterinstall event. - The BeforeInstall read out the new config (the old one is deleted). -Don't copy the new Appconfig but Copy a File with an different name e.g. AppConfigUpdate.config who include the new appconfig. In an afterinstall Event i save the old Config with an File.Move(). Now whe have:
-Appconfig.exe.config_Original
-AppconfigUpdate.config
Than i read out the .config_Original and write the parameter in the AppConfigUpdate.config and rename this to Appconfig.exe.config
My problem is that there is a standard action in msi that execute after execute my custom actions called: RemoveExistingProducts. So now when i Debugg the installer i can see at the end of my customaction there is the old configuration .config_original and the new configuration .config with the right params from the old configuration. But after my custom action the installation delete the the .config and only the .config_original is remaining.
I think that the RemoveExistingProducts delete all files that were not delivered with the update package. But i can't deliver the .config because than it's overwrite the original config and all params are lost.
I'm now working over 3 day's on this problem and i really need your help. I run out of ideas how to solve this problem, maby anyone of you had some similar problem?
Sorry for my bad english. best regards