Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a readable FxCop report

Tags:

c#

.net

fxcop

Is there a good tool that can convert the XML output of FxCop into something that can be put into a Word document? I'd prefer not to write an XML-FO XSLT transform, maybe someone did something like that already.

like image 916
User1 Avatar asked Mar 12 '10 20:03

User1


3 Answers

Somebody did. You'll find several .xsl files in the Xml subdirectory of the FxCop install directory.

  • FxCopReport.xsl
  • FxCopRichConsoleOutput.xsl
  • VSConsoleOutput.xsl
like image 120
Hans Passant Avatar answered Nov 12 '22 11:11

Hans Passant


Following worked better for me.

  1. select all the lines in the grid,
  2. do a right click, Copy as , CSV.

Go to excel and import the text as comma separated content.

like image 35
shobhit Avatar answered Nov 12 '22 10:11

shobhit


I found that you can simply copy and paste into a spreadsheet and paste that into Word.

like image 1
User1 Avatar answered Nov 12 '22 10:11

User1