So I have some settings that are of the user scope. But for some reason, they are not being saved to the .exe.config file. I do the following:
Properties.Settings.Default.Email="[email protected]";
Properties.Settings.Default.Save();
Yet I look at the settings file in the debug folder and it is still the default that I set in visual studio. Am I doing this wrong?