leeand00
leeand00

Reputation: 26402

Are the settings in Visual Studio 2010 stored with the solution or with the IDE?

Are the settings in Visual Studio 2010 stored with the solution or with the IDE?

Is there any way to have settings that are the default with the IDE and then overriden by the project?

Upvotes: 4

Views: 2097

Answers (3)

Hans Passant
Hans Passant

Reputation: 942247

Any settings affecting the user interface, the ones you set with Tools + Options are not stored in solution or project files. Nor is there a way to get a loaded solution to alter them. They are stored in the CurrentSettings.vssettings file, Documents/Visual Studio 20xx/Settings subdirectory of your user folder.

Upvotes: 9

Jonathan
Jonathan

Reputation: 12015

The VS2010 IDE settings are saved with the IDE, not with the project or solution. (Except, of course the project/solutions settings, but I assume that we're not talking about that)

After reading this msdn article,it seems that the common way to have different sets of configuration is using the import/export setting option having one xml file for each configuration set.

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

Upvotes: 0

Beth
Beth

Reputation: 9617

They can be exported and imported. Under the Tools menu, check out Import and Export Settings...

Upvotes: 1

Related Questions