When I create a settings file, Visual Studio generates a singleton with the instance name Default:
Properties.Settings.Default.SettingIHaveSaved
How can I get Visual Studio to generate another list of settings with a new instance name? Say,
Properties.Settings.Debug.SettingIHaveSaved
Thanks!