<?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>//InterKnowlogy/ Blogs &#187; code metrics</title>
	<atom:link href="http://blogs.interknowlogy.com/tag/code-metrics/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.interknowlogy.com</link>
	<description>Blogging the Art of Software</description>
	<lastBuildDate>Fri, 17 May 2013 18:10:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Line counting in powershell</title>
		<link>http://blogs.interknowlogy.com/2011/11/17/line-counting-in-powershell/</link>
		<comments>http://blogs.interknowlogy.com/2011/11/17/line-counting-in-powershell/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 21:31:17 +0000</pubDate>
		<dc:creator>Paul Rohde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code metrics]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blogs.interknowlogy.com/?p=2333</guid>
		<description><![CDATA[Quick Tip: If you want to do a line count on a project, a really easy way to do it is with a simple Powershell command: Add extension types as necessary. Note that it DOES include comments in the line count. Here&#8217;s the stackoverflow article where this originated from, I needed something that would run [...]]]></description>
			<content:encoded><![CDATA[<p>Quick Tip: If you want to do a line count on a project, a really easy way to do it is with a simple Powershell command:</p>
<pre class="brush: powershell; gutter: false; title: ; notranslate">
(dir -include *.cs,*.xaml -recurse | select-string .).Count
</pre>
<p>Add extension types as necessary. Note that it DOES include comments in the line count.</p>
<p>Here&#8217;s the stackoverflow article where this originated from, I needed something that would run outside of the main solution to take into account all the additional projects and files, so a plugin was not going to work.</p>
<p><a href="http://stackoverflow.com/questions/1244729/how-do-you-count-the-lines-of-code-in-a-visual-studio-solution">http://stackoverflow.com/questions/1244729/how-do-you-count-the-lines-of-code-in-a-visual-studio-solution</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.interknowlogy.com/2011/11/17/line-counting-in-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
