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 开发者_JS百科that are the default with the IDE and then overriden by the project?
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.
They can be exported and imported. Under the Tools
menu, check out Import and Export Settings...
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.
精彩评论