We have a winform application deplyed using Clickonce which has a configuration file.
What we need is when there is an upgrade available, to merge the configuration in local machine with what is coming from the deplyoment.
Any ideas or experiences?
Upvotes: 0
Views: 551
Reputation: 358
There's an Upgrade method on Properties.Settings.Default that is supposed to do that if you call it before you access any of the settings.
Upvotes: 2