Settings.settings is a constructor file for Visual Studio to generate a settings class, for example, how .resx files contain resources.
Settings need to be stored somewhere, but they are not saved in Settings.settings (by default they are). They are stored in .config files.
You can update the generated class with app.config and not worry about how to manipulate XML.
source share