views:

226

answers:

1

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?

+1  A: 

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.

dave-ilsw