0

I have Visual Studio with Resharper 7.1 configured in it. I opened a solution and added a word say QWERTY in the abbreviation list. I could find this entry in GlobalSettingsStorage.DotSettings file and everything is working as expected.

Now I deleted this abbreviation entry from GlobalSettingsStorage.DotSettings file. Now also I am able to see the abbreviation word in the solution as valid through Resharper. Then I checked my mySolution1.DotSettings in my solution's folder and could not find this entry here as well. Can any one help me to understand where this abbreviation is actually stored? Also what are the places where resharper settings are actually stored?

Sandy
  • 11,332
  • 27
  • 76
  • 122

2 Answers2

0

Could you try "Resharper -> Options -> Code Editing -> C# Naming Style -> Advanced Settings"?

There you should find the textbox named as "Abbreviations as plain text (UPPER CASE only)" below the page. From there, just remove the word that you added accidentally to this list.

Hope it works!

Wasif Hossain
  • 3,900
  • 1
  • 18
  • 20
  • I know this thing. But problem when I open my solution then those word are listed in the textbox you mentioned. Opening this window in some some other solution does not show these words. – Sandy Sep 30 '13 at 06:38
  • I just dont want to remove these words from my solution, I actually want to know where these are stored. I have some further plans to execute based on this. – Sandy Sep 30 '13 at 06:39
0

Resharper stores these words in 3 separate files based on the user preference:

  1. mySolution1.DotSettings (Project specific)

  2. mySolution1.DotSettings.user (Project specific)

  3. GlobalSettingsStorage.DotSettings (Global)

Wasif Hossain
  • 3,900
  • 1
  • 18
  • 20