<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Software Rockstar &#187; Code Analysis</title>
	<atom:link href="http://www.softwarerockstar.com/tag/code-analysis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.softwarerockstar.com</link>
	<description>Coaching and mentoring on a journey from a Developer to an IT Leader</description>
	<lastBuildDate>Tue, 13 Sep 2011 17:18:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Improved .NET Code Analysis: FxCop 1.36</title>
		<link>http://www.softwarerockstar.com/2007/10/improved-net-code-analysis-fxcop-1-36/</link>
		<comments>http://www.softwarerockstar.com/2007/10/improved-net-code-analysis-fxcop-1-36/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 01:51:00 +0000</pubDate>
		<dc:creator>SoftwareRockstar</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Code Analysis]]></category>
		<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[Rants & Raves]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://mharoon.wordpress.com/2007/10/31/improved-net-code-analysis-fxcop-1-36/</guid>
		<description><![CDATA[The latest beta version of FxCop 1.36 was recently made available for download. This new version includes various features and fixes that include: 200+ bug fixes that reduce noise, missing analysis and rule crashes Support for analyzing anonymous methods and lambda expressions New option for skipping analysis over tool generated code Better support for C++/CLI [...]]]></description>
			<content:encoded><![CDATA[<div class="imageleft"><img src="http://softwarerockstar.com/wp-content/uploads/2007/10/fxcoprules.jpg" width="233" height="293" /></div>
<p>The latest beta version of FxCop 1.36 was recently made available for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3389f7e4-0e55-4a4d-bc74-4aeabb17997b&amp;displaylang=en">download</a>.  This new version includes various features and fixes that include:</p>
<ul>
<li>200+ bug fixes that reduce noise, missing analysis and rule crashes </li>
<li>Support for <a href="http://blogs.msdn.com/fxcop/archive/2007/09/21/new-for-visual-studio-2008-support-for-anonymous-methods-and-lambda-expressions.aspx">analyzing anonymous methods and lambda expressions</a> </li>
<li>New option for skipping analysis over tool generated code </li>
<li>Better support for C++/CLI and the Compact Framework </li>
<li>Language &#8216;friendly&#8217; API names in the UI and resolutions</li>
<li>New globalization, design and usage rules </li>
<li>Performance improvements that cut analysis by 2x and use half as much memory</li>
<li>Documentation that is <a href="http://msdn2.microsoft.com/en-us/library/bb429476(VS.80).aspx">now available on MSDN</a> </li>
</ul>
<p>FxCop is an excellent free <a title="Static code analysis" href="http://en.wikipedia.org/wiki/Static_code_analysis">static code analysis</a> tool from <a title="Microsoft" href="http://en.wikipedia.org/wiki/Microsoft">Microsoft</a> that checks <a title=".NET Framework" href="http://en.wikipedia.org/wiki/.NET_Framework">.NET</a> <a title="Managed code" href="http://en.wikipedia.org/wiki/Managed_code">managed code</a> <a title=".NET assembly" href="http://en.wikipedia.org/wiki/.NET_assembly">assemblies</a> for conformance to Microsoft&#8217;s .NET Framework Design Guidelines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwarerockstar.com/2007/10/improved-net-code-analysis-fxcop-1-36/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FxCop Analyzes Internals</title>
		<link>http://www.softwarerockstar.com/2006/08/fxcop-analyzes-internals/</link>
		<comments>http://www.softwarerockstar.com/2006/08/fxcop-analyzes-internals/#comments</comments>
		<pubDate>Sat, 19 Aug 2006 13:37:00 +0000</pubDate>
		<dc:creator>SoftwareRockstar</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Code Analysis]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://mharoon.wordpress.com/2006/08/19/fxcop-analyzes-internals/</guid>
		<description><![CDATA[While FxCop is an invaluable tool for analyzing the external (public / protected) API of our assemblies, I was really hoping to have a way to also fire it against internal members of our code in order to enforce coding standards across our organization. David Kean&#8217;s tip shows us exactly how to do that! It [...]]]></description>
			<content:encoded><![CDATA[<div class="imageleft"><img src="http://softwarerockstar.com/wp-content/uploads/2007/10/fxcoprules.jpg" alt="FxCop" width="233" height="293" class="alignnone size-full wp-image-291" /></div>
<p>While <a href="http://www.gotdotnet.com/team/FxCop/">FxCop</a> is an invaluable tool for analyzing the external (public / protected) API of our assemblies, I was really hoping to have a way to also fire it against internal members of our code in order to enforce coding standards across our organization. <a href="http://blogs.msdn.com/fxcop/archive/2006/08/08/692908.aspx">David Kean&#8217;s tip</a> shows us exactly how to do that! It turns out to be a simple matter of turning on the <strong>Run all overridable rules against all targets</strong> option under <strong>Project</strong> | <strong>Options</strong> | <strong>Spelling &amp; Analysis</strong> menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softwarerockstar.com/2006/08/fxcop-analyzes-internals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 5.128 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-01-13 10:16:59 -->

