Currently I have the the default Settings.settings file that I access through Properties.Settings.Default.
But this config is saved in my user’s appdata folder. How can I get there to be only one config file kept in the same dir as the exe that is universal AND can be changed at runtime?
You can’t do this with the Properties.Settings feature, as the documenation says:
An alternate approach would be to use the System.IO API to read and write a configuration file you design yourself.