I have the settings file in C# where I store the configuration parameters. So, I build the solution and install it in the system. The application creates an XML file user.config consisting of all the configuration parameters in :
%userprofile%\appdata\local or %userprofile%\Local Settings\
I made changes to the configuration through the application and save it by issuing the command
Properties.Settings.Default.Save();
When I restart the application, the configuration consists of the default values and not the updated values.
Any idea if I am missing something here.