Are settings saved in Visual Studio 2010 using the solution or using the IDE?

Are settings saved in Visual Studio 2010 using the solution or using the IDE?

Is there a way to set default options using the IDE and then override the project?

+4
source share
3 answers

Any settings that affect the user interface, those that you set using Tools + Options, are not saved in the solution or project files. There is also no way to get the downloaded solution to change them. They are stored in the CurrentSettings.vssettings file, in the Documents / Visual Studio 20xx / Settings subdirectory of your user folder.

+8
source

They can be exported and imported. From the Tools menu, select Import and Export Settings...

0
source

ID2 VS2010 settings are saved using the IDE, not with a project or solution. (Except, of course, for project settings / solutions, but I assume we are not talking about this)

After reading this msdn article, it seems like a common way to have different configuration sets is to use the import / export option with one xml file for each configuration set.

Maybe some addin could do the job, but at this time I don't know any features.

0
source

Source: https://habr.com/ru/post/1346295/


All Articles