Hello,
I have created a C# .net Windows Service that has a config file.
I am reading the settings of the config file from my code using
string setting1 = Properties.Settings.Default.setting1;
If I change the value of setting1 directly in the .config file of the Windows Service for some reason it maintains the value that I had set for it at design time, in the Settings Dialog of the Project.
I do not understand what I am doing wrong ..
Thanks