I tried to change some setting witch my console application want to set and use on every execution.
1)added a .settings file named InputSettings.
2)added two items with Scope:User.
3)change the code like this:
private projAPI.InputSettings settings = new InputSettings();
settings.publishEndDate = DateTime.Now;
settings.Save();
It doesn't make any changes in setting file, but everytime I run a project, setting is changed when I trace that line.
Is there any mistake I had?
User settings are stored in a different file. See this question:
MSDN Documentation lists a few examples on how to use application and user settings.
For example How To: Write User Settings at Run Time with C#