<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Chris Cyvas &#187; Programming Tip</title>
	<atom:link href="http://chriscyvas.com/category/programming-tip/feed/" rel="self" type="application/rss+xml" />
	<link>http://chriscyvas.com</link>
	<description></description>
	<lastBuildDate>Mon, 10 Aug 2009 07:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='chriscyvas.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/e8683360f8da10b23a22ff11a70cd9bb?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Chris Cyvas &#187; Programming Tip</title>
		<link>http://chriscyvas.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chriscyvas.com/osd.xml" title="Chris Cyvas" />
	<atom:link rel='hub' href='http://chriscyvas.com/?pushpress=hub'/>
		<item>
		<title>MEF &#8211; Baby Steps</title>
		<link>http://chriscyvas.com/2008/12/19/mef-baby-steps/</link>
		<comments>http://chriscyvas.com/2008/12/19/mef-baby-steps/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 02:29:28 +0000</pubDate>
		<dc:creator>ccyvas</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming Tip]]></category>
		<category><![CDATA[dashCommerce]]></category>

		<guid isPermaLink="false">http://chriscyvas.wordpress.com/2008/12/19/mef-baby-steps/</guid>
		<description><![CDATA[MEF is the Managed Extensibility Framework, which is a project out on CodePlex. The aim of the project is to allow greater reuse of applications and components. Microsoft has said that they will be using it in the next rev of Visual Studio – so there’s some buy-in there. In dashCommerce we allow you to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=153&subd=ccyvas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>MEF is the Managed Extensibility Framework, which is a project out on <a href="http://www.codeplex.com/mef" target="_blank">CodePlex</a>. The aim of the project is to allow greater reuse of applications and components. Microsoft has said that they will be using it in the next rev of Visual Studio – so there’s some buy-in there. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In dashCommerce we allow you to drop in your own providers for Tax, Shipping, and Payment. There are others coming, but one thing that seems to be tripping people up is how, exactly to pull that off. Now, I think it’s pretty darn easy, but I built it, so it makes perfect sense. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  In addition, people are doing some pretty amazing things with dashCommerce and the application is growing – quickly. And there is a ton of room for additional functionality and flexibility.</p>
<p>With that in mind I started playing with MEF to see what the basic facilities were. And I had something in mind that I wanted to test right off the bat – dropping assemblies into the bin directory and see if they would auto-magically appear for use by the application. I built a windows service a few years back that allowed you to do just that – it was pretty slick, but I never went any further with it. Well, MEF allows us to make the shift from statically compiled applications to dynamically composed applications. There is a lot of power there. A lot.</p>
<p>So, with my minimal goals in mind, I set out to create a simple Cashier application that would try to charge something (actually, it doesn’t charge anything, but it says it does). On the first pass through, there are no classes that implement <strong><em>IPayment</em></strong> so it looks like this:</p>
<p> <a href="http://chriscyvas.files.wordpress.com/2008/12/mef-17.gif"><img class="alignnone size-thumbnail wp-image-172" title="mef-1.gif" src="http://chriscyvas.files.wordpress.com/2008/12/mef-17.gif?w=128&#038;h=64" alt="mef-1.gif" width="128" height="64" /></a><a href="http://chriscyvas.files.wordpress.com/2008/12/mef-1.gif"></a></p>
<p>If I then browse the solution and drop the Payment assembly into the Cashier\bin\Debug directory and press the space bar, I will see this:</p>
<p><a href="http://chriscyvas.files.wordpress.com/2008/12/mef-2.gif"></a></p>
<p><a href="http://chriscyvas.files.wordpress.com/2008/12/mef-26.gif"><img class="alignnone size-thumbnail wp-image-174" title="mef-2.gif" src="http://chriscyvas.files.wordpress.com/2008/12/mef-26.gif?w=128&#038;h=64" alt="mef-2.gif" width="128" height="64" /></a></p>
<p>You can see that without stopping and restarting the application, it has recognized that I have dropped in an assembly that has a particular type of export in it:</p>
<pre class="code">  [<span style="color:#2b91af;">Export</span>(<span style="color:#0000ff;">typeof</span>(<span style="color:#2b91af;">IPayment</span>))]</pre>
<p>I can then browse to the Authorize assembly and drop it into the same location and press the space bar once again and I see this:</p>
<p><a href="http://chriscyvas.files.wordpress.com/2008/12/mef-3.gif"></a></p>
<p><a href="http://chriscyvas.files.wordpress.com/2008/12/mef-36.gif"><img class="alignnone size-thumbnail wp-image-176" title="mef-3.gif" src="http://chriscyvas.files.wordpress.com/2008/12/mef-36.gif?w=128&#038;h=63" alt="mef-3.gif" width="128" height="63" /></a></p>
<p>Now it recognizes that it has two classes that implement IPayment and it is exercising the Charge() method on each of them. Now, if we couple this with dropping the configuration controls into a specific location, we will get rid of the registration process that currently has to happen in dashCommerce and we will be on our merry way to composing dashCommerce in a highly flexible way! Very sweet!</p>
<p><strong>[UPDATE:]</strong></p>
<p>I did try to upload the sample solution, but WordPress doesn&#8217;t allow the uploading of .zip files. So, I had to do a little thing to get it to work. You can get it <a href="http://dashcommerce.org/blogdownloads/meftest.zip" target="_blank">here</a>.</p>
<div id="scid:8eb9d37f-1541-4f29-b6f4-1eea890d4876:54532ed6-270d-4e88-8e6e-1c0dcd3704fc" class="wlWriterSmartContent" style="display:inline;float:none;margin:0;padding:0;">
<div id="scid:8eb9d37f-1541-4f29-b6f4-1eea890d4876:54532ed6-270d-4e88-8e6e-1c0dcd3704fc" class="wlWriterSmartContent" style="display:inline;float:none;margin:0;padding:0;"><a href="http://www.dotnetkicks.com/kick/?url=http://chriscyvas.wordpress.com/2008/12/19/mef-baby-steps/"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/19/mef-baby-steps/&amp;bgcolor=0080C0&amp;fgcolor=FFFFFF&amp;border=000000&amp;cbgcolor=D4E1ED&amp;cfgcolor=000000" border="0" alt="DotNetKicks Image" /></a></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccyvas.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccyvas.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccyvas.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccyvas.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccyvas.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccyvas.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccyvas.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccyvas.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccyvas.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccyvas.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=153&subd=ccyvas&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://chriscyvas.com/2008/12/19/mef-baby-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db142239df0d9c2d37b6825463629c28?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ccyvas</media:title>
		</media:content>

		<media:content url="http://chriscyvas.files.wordpress.com/2008/12/mef-17.gif?w=128" medium="image">
			<media:title type="html">mef-1.gif</media:title>
		</media:content>

		<media:content url="http://chriscyvas.files.wordpress.com/2008/12/mef-26.gif?w=128" medium="image">
			<media:title type="html">mef-2.gif</media:title>
		</media:content>

		<media:content url="http://chriscyvas.files.wordpress.com/2008/12/mef-36.gif?w=128" medium="image">
			<media:title type="html">mef-3.gif</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/19/mef-baby-steps/&#38;bgcolor=0080C0&#38;fgcolor=FFFFFF&#38;border=000000&#38;cbgcolor=D4E1ED&#38;cfgcolor=000000" medium="image">
			<media:title type="html">DotNetKicks Image</media:title>
		</media:content>
	</item>
		<item>
		<title>ISV Tip &#8211; Subversion Source Control Hosting</title>
		<link>http://chriscyvas.com/2008/12/11/isv-tip-subversion-hosting/</link>
		<comments>http://chriscyvas.com/2008/12/11/isv-tip-subversion-hosting/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 13:00:00 +0000</pubDate>
		<dc:creator>ccyvas</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Programming Tip]]></category>

		<guid isPermaLink="false">http://chriscyvas.wordpress.com/2008/12/11/isv-tip-subversion-hosting/</guid>
		<description><![CDATA[For an small ISV, the trouble you frequently encounter is managing all of the systems, environments, and tools you need to run your business. One of the fundamental things is source control. I have always been a bit of a source control nut – openly scoffing at people that have asked me to “just develop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=124&subd=ccyvas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[</p>
<p>For an small ISV, the trouble you frequently encounter is managing all of the systems, environments, and tools you need to run your business.</p>
<p>One of the fundamental things is source control. I have always been a bit of a source control nut – openly scoffing at people that have asked me to “just develop on the server”. It’s my hangup &#8211; I know it. I knew it when they openly scoffed at me in return. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But when I started developing software, outside of the corporate environment, I knew this was one of the first things I had to do, and I didn’t feel like wrestling with server upgrades and all the luggage that goes with it. So, I decided to outsource my source control. Some may consider this heresy – hosting my source with a third party, but I figure they have better things to do than sniff around my code trying to figure out if it is any good. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Well, that, and I have the source for my <a href="http://en.wikipedia.org/wiki/Flux_capacitor#Flux_capacitor" target="_blank">flux capacitor</a> in my safe deposit box. </p>
<p>I have been using the folks at <a href="http://www.svnrepository.com/" target="_blank">svnrepository</a> for about two years now I think and I have been really happy with them. Don’t be put off by there minimalist web site – there support has been quite good – the once or twice I have had to ask a question. I wrote a post about this a while back, and this is completely unsolicited – I just like to mention a company I think is doing a nice job and is well worth the money I spend with them.</p>
<p><img height="14" alt="music note" src="http://spaces.live.com/rte/emoticons/music_note.gif" width="14" align="absMiddle" border="0" /> While writing this, I was listening to &quot;The Sun Does Rise&quot; by Jah Wobble&#8217;s Invaders of the hearte</p>
<div class="wlWriterHeaderFooter" style="text-align:left;margin:0;padding:4px;"><a href="http://www.dotnetkicks.com/kick/?url=http://chriscyvas.wordpress.com/2008/12/11/isv-tip-subversion-hosting/"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/11/isv-tip-subversion-hosting/&amp;bgcolor=0080C0&amp;fgcolor=FFFFFF&amp;border=000000&amp;cbgcolor=D4E1ED&amp;cfgcolor=000000" alt="DotNetKicks Image" border="0/"></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccyvas.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccyvas.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccyvas.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccyvas.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccyvas.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccyvas.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccyvas.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccyvas.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccyvas.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccyvas.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=124&subd=ccyvas&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://chriscyvas.com/2008/12/11/isv-tip-subversion-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db142239df0d9c2d37b6825463629c28?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ccyvas</media:title>
		</media:content>

		<media:content url="http://spaces.live.com/rte/emoticons/music_note.gif" medium="image">
			<media:title type="html">music note</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/11/isv-tip-subversion-hosting/&#38;bgcolor=0080C0&#38;fgcolor=FFFFFF&#38;border=000000&#38;cbgcolor=D4E1ED&#38;cfgcolor=000000" medium="image">
			<media:title type="html">DotNetKicks Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming Tip &#8211; Complimentary Database Tools</title>
		<link>http://chriscyvas.com/2008/12/09/programming-tip-complimentary-tools/</link>
		<comments>http://chriscyvas.com/2008/12/09/programming-tip-complimentary-tools/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 13:00:00 +0000</pubDate>
		<dc:creator>ccyvas</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Programming Tip]]></category>

		<guid isPermaLink="false">http://chriscyvas.wordpress.com/2008/12/09/programming-tip-complimentary-tools/</guid>
		<description><![CDATA[I use the Database Publishing Tool a lot. For some reason the version in Visual Studio didn’t work as well for me, so I have stuck with the free standing version of it. Not sure if there is a version that works with Sql Server 2008 yet, but this one works well for 2000 and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=115&subd=ccyvas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[</p>
<p>I use the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&amp;displaylang=en" target="_blank">Database Publishing Tool</a> a lot. For some reason the version in Visual Studio didn’t work as well for me, so I have stuck with the free standing version of it. Not sure if there is a version that works with Sql Server 2008 yet, but this one works well for 2000 and 2005.</p>
<p>The problem you may encounter, as I do, is that the resultant script is waaaaaay to large to load into the Sql Server Management Studio. So, once you script out the database, then you can use <a href="http://msdn.microsoft.com/en-us/library/ms162773(SQL.90).aspx" target="_blank">sqlcmd.exe</a> to run the resultant script on an existing database.</p>
<p>Your command line will look something like this:</p>
<p>C:\&gt;sqlcmd -S YOUR_SQL_SERVER -U USER -P PASSWORD -d DATABASE -i &quot;the_scriptpath&quot;</p>
<p>And here it is in action:</p>
<p><a href="http://chriscyvas.files.wordpress.com/2008/12/sqlcmd.gif"><img title="sqlcmd" style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="231" alt="sqlcmd" src="http://chriscyvas.files.wordpress.com/2008/12/sqlcmd-thumb.gif?w=404&#038;h=231" width="404" border="0" /></a>&#160;</p>
<p><img height="14" alt="music note" src="http://spaces.live.com/rte/emoticons/music_note.gif" width="14" align="absMiddle" border="0" /> While writing this, I was listening to &quot;Ancodia&quot; by 808 State</p>
<div class="wlWriterHeaderFooter" style="text-align:left;margin:0;padding:4px;"><a href="http://www.dotnetkicks.com/kick/?url=http://chriscyvas.wordpress.com/2008/12/09/programming-tip-complimentary-tools/"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/09/programming-tip-complimentary-tools/&amp;bgcolor=0080C0&amp;fgcolor=FFFFFF&amp;border=000000&amp;cbgcolor=D4E1ED&amp;cfgcolor=000000" alt="DotNetKicks Image" border="0/"></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccyvas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccyvas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccyvas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccyvas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccyvas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccyvas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccyvas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccyvas.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccyvas.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccyvas.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=115&subd=ccyvas&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://chriscyvas.com/2008/12/09/programming-tip-complimentary-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db142239df0d9c2d37b6825463629c28?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ccyvas</media:title>
		</media:content>

		<media:content url="http://chriscyvas.files.wordpress.com/2008/12/sqlcmd-thumb.gif" medium="image">
			<media:title type="html">sqlcmd</media:title>
		</media:content>

		<media:content url="http://spaces.live.com/rte/emoticons/music_note.gif" medium="image">
			<media:title type="html">music note</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/09/programming-tip-complimentary-tools/&#38;bgcolor=0080C0&#38;fgcolor=FFFFFF&#38;border=000000&#38;cbgcolor=D4E1ED&#38;cfgcolor=000000" medium="image">
			<media:title type="html">DotNetKicks Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming Tip &#8211; PowerCommands for Visual Studio 2008</title>
		<link>http://chriscyvas.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/</link>
		<comments>http://chriscyvas.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 13:00:00 +0000</pubDate>
		<dc:creator>ccyvas</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Programming Tip]]></category>

		<guid isPermaLink="false">http://chriscyvas.wordpress.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/</guid>
		<description><![CDATA[These have proven to be an excellent help. Check them out here: http://code.msdn.microsoft.com/PowerCommands While writing this, I was listening to &#34;Beautiful Day&#34; by U2<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=111&subd=ccyvas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[</p>
<p>These have proven to be an excellent help. Check them out here:</p>
<p><a title="http://code.msdn.microsoft.com/PowerCommands" href="http://code.msdn.microsoft.com/PowerCommands">http://code.msdn.microsoft.com/PowerCommands</a></p>
<p><img height="14" alt="music note" src="http://spaces.live.com/rte/emoticons/music_note.gif" width="14" align="absMiddle" border="0" /> While writing this, I was listening to &quot;Beautiful Day&quot; by U2</p>
<div class="wlWriterHeaderFooter" style="text-align:left;margin:0;padding:4px;"><a href="http://www.dotnetkicks.com/kick/?url=http://chriscyvas.wordpress.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/&amp;bgcolor=0080C0&amp;fgcolor=FFFFFF&amp;border=000000&amp;cbgcolor=D4E1ED&amp;cfgcolor=000000" alt="DotNetKicks Image" border="0/"></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccyvas.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccyvas.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccyvas.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccyvas.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccyvas.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccyvas.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccyvas.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccyvas.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccyvas.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccyvas.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chriscyvas.com&blog=12640580&post=111&subd=ccyvas&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://chriscyvas.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db142239df0d9c2d37b6825463629c28?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ccyvas</media:title>
		</media:content>

		<media:content url="http://spaces.live.com/rte/emoticons/music_note.gif" medium="image">
			<media:title type="html">music note</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://chriscyvas.wordpress.com/2008/12/08/programming-tip-powercommands-for-visual-studio-2008/&#38;bgcolor=0080C0&#38;fgcolor=FFFFFF&#38;border=000000&#38;cbgcolor=D4E1ED&#38;cfgcolor=000000" medium="image">
			<media:title type="html">DotNetKicks Image</media:title>
		</media:content>
	</item>
	</channel>
</rss>