Hello from a long time lurker, first time poster.
I am working on a C# app with a custom config section to save ftp account information. When I come out with a new revision, all the information saved in the previous release is gone.
I've tried using Properties.Settings.Default.Upgrade(), but that only updates usersettings and not custom config sections.
Preferably I rather use the built in ConfigurationManager but I am contemplating either handling the the various settings I use manually through xml or creating and using a class that can be serialized.
Any suggestions? Thanks.