You have a custom parameter called Upgraded, boolean, which defaults to false. Then check:
if (!Properties.Settings.Default.Upgraded) { Properties.Settings.Default.Upgrade(); Properties.Settings.Default.Upgraded = true; Properties.Settings.Default.Save(); Trace.WriteLine("INFO: Settings upgraded from previous version"); }
This will update the settings from the previous version if this is the first launch of a new version.
source share