How to integrate FxCop and VS 2008? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T21:15:45Zhttp://stackoverflow.com/feeds/question/841704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841704/how-to-integrate-fxcop-and-vs-20087How to integrate FxCop and VS 2008?Vadim2009-05-08T20:43:05Z2009-05-09T14:25:17Z
<p>If this is duplicated question, please point me to the proper link and I'll delete this question.</p>
<p>I know that in VS Team System I can use Code Analysis but I'm using VS Professional.</p>
<p>Can you tell me how I can integrate FxCop and Visual Studio? I don't want to add FxCopCmd.exe to my Post-build events to run FxCop with every compilation.
I want to be able to run FxCop when I choose by right clicking on the project in Solution Explorer.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/841704/how-to-integrate-fxcop-and-vs-2008/841776#8417765Answer by amit for How to integrate FxCop and VS 2008?amit2009-05-08T21:01:58Z2009-05-08T21:01:58Z<p>How about setting up FxCop as an external tool in Visual Studio? Here's the link:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb429389%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb429389(VS.80).aspx</a></p>
http://stackoverflow.com/questions/841704/how-to-integrate-fxcop-and-vs-2008/842033#8420339Answer by Vadim for How to integrate FxCop and VS 2008?Vadim2009-05-08T22:09:39Z2009-05-09T14:25:17Z<p>It took awhile by I finally figure it out. It's not ideal but it works.</p>
<p><strong>Update:</strong>
I create a post with <a href="http://vkreynin.wordpress.com/2009/05/09/integrate-fxcop-1-36-vs-2008/" rel="nofollow">step by step instructions</a>:</p>
<p>Thanks to <a href="http://stackoverflow.com/users/83479/aamit">aamit</a>, who provided the link that put me on the right track even that solution in MSDN article doesn't work. Give him +1; he deserves it.</p>
<p>1.) In FxCop GUI save your project.</p>
<p><strong>IMPORTANT</strong>: </p>
<ul>
<li>a. Save project in the same directory
where your solution is.</li>
<li>b. Give the FxCop project name the
same as your solution name and
include the .sln extension.</li>
</ul>
<p>For example: If your solution name is <code>MySolution.sln</code>, the FxCop project name is going to be <code>MySolution.sln.FxCop</code>.</p>
<p>2.) In Visual Studio select Tools -> External Toos</p>
<p>3.) Enter following information in External Tools dialog box:</p>
<ul>
<li>Title: <strong>FxCop</strong></li>
<li>Command: <strong>C:\Program Files\Microsoft
FxCop 1.36\FxCopCmd.exe</strong></li>
<li>Arguments: <strong>/c
/p:"$(SolutionDir)\$(SolutionFileName).fxcop"
/cXsl:"C:\Program Files\Microsoft
FxCop 1.36\Xml\VSConsoleOutput.xsl"</strong></li>
<li>Initial directory: <strong>C:\Program
Files\Microsoft FxCop 1.36</strong></li>
</ul>
<p>Make sure that <strong>"Use Output window"</strong> checkbox is checked.</p>
<p>That's it. It works for me I hope it's going to work for you.</p>
http://stackoverflow.com/questions/841704/how-to-integrate-fxcop-and-vs-2008/843376#8433763Answer by Nicholas Piasecki for How to integrate FxCop and VS 2008?Nicholas Piasecki2009-05-09T13:58:10Z2009-05-09T13:58:10Z<p>I run a command very similar Vadim's as a Post-Build event for the project. That way, I get the FxCop errors as soon as I recompile. But our commands are pretty much the same; nice to know at least two people in the world reached the same conclusion!</p>
<p>The errors do show up in Visual Studo's Error List pane.</p>
<pre>
"%ProgramFiles%\Microsoft FxCop 1.36\FxCopCmd.exe"
/file:"$(TargetPath)"
/console
/dictionary:"$(SolutionDir)Res\FxCop\CustomDictionary.xml"
/searchgac
/ignoregeneratedcode
</pre>
<p>(You can omit the /dictionary argument; it just points to one of my custom dictionary files since FxCop flags a few variable names as Hungarian notation when they aren't. I also line-wrapped the command for readability.)</p>
<p>It does make the build a little longer, but it's nice to see the errors right away and to tailor the command settings per project. Good luck!</p>