VS2010 import / export setting does not work

I am trying to change the colors of my VS2010 according to the color scheme http://studiostyl.es/schemes/son-of-obsidian . p>

To import a parameter, I go from the Visual Studio menu to:

Tools โ†’ Import and Export Settings โ†’ Import Selected Environment Settings -> No, just import the new settings by overwriting my current settings -> Select the options to import โ†’ All settings

I tried with a closed and open project, but it doesn't work at all. Can anybody help?

+6
source share
2 answers

A few possible solutions, try them in order:

  • First try ONLY importing options / environments / fonts and colors.

  • If you have ReSharper, turn off color identifiers, which will ruin most color schemes. Go to ReSharper / Code Verification / Settings and turn off color identifiers.

  • Run RegEdit and export the backup first, and then delete the following keys: HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 10.0 \ FontAndColors \ Especially the cache and GUID. Then run VS and try to import again. It worked for me.

  • I have not even tried this, but as a last resort I will backup C: \ Users \ YOURUSERNAME \ Documents \ Visual Studio 2010 \ Settings \ CurrentSettings.vssettings and then edit this file by deleting the entire tag

+2
source

This solution works for me:

  • first download the settings file
  • close visual studio
  • go to settings. for me there is "c: \ users \ administrator \ documents \ visual studio 2010 \ Settings"
  • paste settings file
  • backup current setting (copying to another folder or ...)
  • rename the settings file to "CurrentSettings.vssettings"
  • open vs
+1
source

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


All Articles