Resharper room ignored by version control errors

When I ignore certain errors in the "Errors in the solution" window, Resharper remembers this parameter.

enter image description here

I tried to restart and restart Visual Studio, ignored errors were ignored. Now I wanted to pass the ignored list of errors to other programmers in the team, putting some configuration file under version control. But I could not find where Resharper stores errors that are ignored. I have the following versions of SW.

Visual Studio 2012 JetBrains ReSharper 8.2.1 Full Edition Build 8.2.1000.4556 on 2014-05-19T10:12:38 

Update: I deleted the files in the following folder and ignored the reset errors, all errors became broken.

 %AppData%\..\Local\JetBrains\ReSharper\v8.2\SolutionCaches\ 

Thus, it saves ignored errors somewhere in these files. However, I have not seen how to install it under version control.

+7
visual-studio visual-studio-2012 resharper
source share
2 answers

Although this is not related to the exact version of the original poster, you may have stumbled upon this question by looking for the answer below :)

If you changed the validation behavior from a glyph like this, and saved it at the configuration level, and set it to "Don't show" or something else, then save it at the command level:

Configure inspection severity.enter image description here

Then, depending on where you set the value, “Computer”, “Solution personal” or “Solution command”, it is stored in another settings file.

You can then add the Solution.sln.DotSettings file to the source control to pass this suppression between all team members.

To cancel the suppression of such warnings, you will have to risk the Resharper multilevel parameter structure, which can be a little confusing if you have not logged in there before.

Manage options

Then, depending on where it was saved, look under the key item for the selected layer:

Edit layer

Find the inspection and install it:

Set the inspection

+2
source share

There should be an export button on the toolbar in the solution error window. You should be able to export all ignored elements to xml or html here.

+1
source share

All Articles