I am trying to read an application setting from my App.Config file that I have modified from the default value that was entered into the settings window under project properties.
string myConn = Properties.Settings.Default.MyConnection
This always returns the default value and never the value that I entered into App.Config. The value in the project folder in App.Config as well as in debug folder in MyApp.Exe.Config show the modified value but the code always returns the default value.
Can anyone help with this? I've seen a few other posts about this but their problems were often associated with a separate DLL trying to read config values. This is the main app.
Thank you