I am using a settings file (*.settings) in one of my console application projects. The problem is that if I directly update, the app.config generated by the settings file, the changes do not take effect. For any change in configuration, I need to open the code and update the settings file. Is this the expected behavior?
Update: I took Simon's advice and dropped the settings file altogether. Now I just use a config file in the project that has the entry point to the application. Things are a lot simpler now.