Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 5 down vote accepted

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:

  • Goto the 'Code Issues' Inspector: Resharper->Code Issues in Current Solution or any other of these options
  • On the window which shows the issues is a 'Export' button. With that button you can export the issues of the project/solution/file.

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
share|improve this answer
1  
Step 1 in details - right click on file/folder/project/solution, Find Code Issues. Then, as described Gamlor in step 2. – derigel Jul 22 '11 at 15:51
1  
Thanks Gamlor, while it's not exactly what I'm looking for (line numbers would be nice) it's definitely a start. At the very least we can see which files are the biggest offenders. – Malice Jul 26 '11 at 14:46
Yes, line numbers would be great! – Kevin Coulombe May 28 '12 at 17:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.