resharperresharper-6.0

ReSharper - Is there any way to save code quality recommendations to a file?


I'm probably using the wrong terminology but basically I would like to dump the findings from the panel to the right of the scrollbar to a file for later review. See the screenshot below for what I mean. It's the part of the screen with the orange and green lines on. Does anyone know if this is possible?

Resharper display

If anyone is interested I have filed a feature request for this with JetBrains here.


Solution

  • As far as I know it's not possible, at least with the built in features. Maybe it's possible by writing a plugin.

    The only thing which I know to get something like this:

    The report format is pretty simple list of issues as text. Like this:

    5 issues found
      Common Practices and Code Improvements (1 issue)
        <DemoApp>\Program.cs (1 issue)
          Property 'Title' can be made private
      Potential Code Quality Issues (4 issues)
        <DemoApp>\Program.cs (4 issues)
          Auto-implemented property accessor is never used
          Auto-implemented property accessor is never used
          Class 'Comment' is never instantiated
          Class 'Program' is never instantiated