Reputation: 2661
Is it possible to create a new folder in the project browser and move there the Setting file
(The one which was created under the main namespace folder by default) ?
Do I have to change the configuration file itself (like to specify the new folder name)?
Upvotes: 1
Views: 1128
Reputation: 2661
Yes, it is possible :
From Properties file move the Settings (with its Settings.designer.cs) to the new folder.
Open the Settings.designer.cs file and change the namespace from ApplicationName.Properties
to NewFileName
.
In the app.config file, change the <userSettings>
<ApplicationName.Properties.Settings>
places
to <userSettings>
<NewFileName.Settings>
Along the program use NewFileName.Settings
instead of Properties.Settings
.
Upvotes: 2