I am attempting to use a new settings file in my Windows Forms Application with C#.
After I deleted the old Settings File (Settings1.settings) and created the new one(Settings.settings).
As I began editing the code that uses the settings file I realized that the new settings file is not being recognized. Example:

There is a custom Settings Class being used from a namespace created by our company that is causing some of the conflict. How do I point the code at the right settings file?
In trying to duplicate what you have done I noticed the Namespace of the Settings.Designer.cs file went from this( I am using a console app to test).
to
If you will notice the Namespace went from ConsoleApplication1.Properties to ConsoleApplication1 so if you add .Properties to the Namespace of the new Settings file it should take care of your problem.