<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments for Code Mode</title>
	<atom:link href="http://pontusmunck.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pontusmunck.com</link>
	<description>I blog whenever I C#</description>
	<lastBuildDate>Sun, 18 Dec 2011 13:37:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Using MEF as an IoC container by Pontus</title>
		<link>http://pontusmunck.com/2010/04/07/using-mef-as-an-ioc-container/#comment-195</link>
		<dc:creator><![CDATA[Pontus]]></dc:creator>
		<pubDate>Sun, 18 Dec 2011 13:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://pontusm.wordpress.com/?p=101#comment-195</guid>
		<description><![CDATA[With MEF you can choose if you want a singleton or not. By decorating your class with PartCreationPolicy(CreationPolicy.NonShared) you do not have to use singletons.]]></description>
		<content:encoded><![CDATA[<p>With MEF you can choose if you want a singleton or not. By decorating your class with PartCreationPolicy(CreationPolicy.NonShared) you do not have to use singletons.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MEF as an IoC container by Gregor</title>
		<link>http://pontusmunck.com/2010/04/07/using-mef-as-an-ioc-container/#comment-194</link>
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 21:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://pontusm.wordpress.com/?p=101#comment-194</guid>
		<description><![CDATA[this is dangerous..to tempting to create singletons all over the show without any control.
Singeltons means something is unique amongst all your objects..first ur database server is a singelton then the printer then what..the user?
Singelton means global state.! global state is bad.! :
when i create a person and a copy of that person at birth  I want two babies and both babies to have their own head, legs, arms, feet, liver, heart. if head were a singelton object i would have simeese twins, with one head instead of normal twins...singletons creates simeese twins..not convinced....well singeltons can work..as can goto, global variables etc etc..but then why bother with object orientated programming if you objects are not complete and independent- just program in a plain old structured fashion..much faster and easier ----so long as the specs don&#039;t change.!]]></description>
		<content:encoded><![CDATA[<p>this is dangerous..to tempting to create singletons all over the show without any control.<br />
Singeltons means something is unique amongst all your objects..first ur database server is a singelton then the printer then what..the user?<br />
Singelton means global state.! global state is bad.! :<br />
when i create a person and a copy of that person at birth  I want two babies and both babies to have their own head, legs, arms, feet, liver, heart. if head were a singelton object i would have simeese twins, with one head instead of normal twins&#8230;singletons creates simeese twins..not convinced&#8230;.well singeltons can work..as can goto, global variables etc etc..but then why bother with object orientated programming if you objects are not complete and independent- just program in a plain old structured fashion..much faster and easier &#8212;-so long as the specs don&#8217;t change.!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Test driven development by Stabil grund med Enova enhets test &#171; EnovaLeaks</title>
		<link>http://pontusmunck.com/2008/06/22/test-driven-development/#comment-189</link>
		<dc:creator><![CDATA[Stabil grund med Enova enhets test &#171; EnovaLeaks]]></dc:creator>
		<pubDate>Thu, 06 Oct 2011 06:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://pontusmunck.com/2008/06/22/test-driven-development#comment-189</guid>
		<description><![CDATA[[...] nog ingen missat idag. Vill man fräsha upp sitt minne kan man läsa Pontus Muncks förträffliga blogg inlägg om detta. Enova kan köra sina enhets test i två lägen remote och med null databas. Det finns [...]]]></description>
		<content:encoded><![CDATA[<p>[...] nog ingen missat idag. Vill man fräsha upp sitt minne kan man läsa Pontus Muncks förträffliga blogg inlägg om detta. Enova kan köra sina enhets test i två lägen remote och med null databas. Det finns [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MEF as an IoC container by Pontus</title>
		<link>http://pontusmunck.com/2010/04/07/using-mef-as-an-ioc-container/#comment-184</link>
		<dc:creator><![CDATA[Pontus]]></dc:creator>
		<pubDate>Sun, 25 Sep 2011 07:41:23 +0000</pubDate>
		<guid isPermaLink="false">http://pontusm.wordpress.com/?p=101#comment-184</guid>
		<description><![CDATA[It is possible to do it, but since MEF was not built to be an IOC container it&#039;s not that straightforward. I would recommend that you choose a proper IOC container over MEF instead of abusing it too much :)

Anyway, if you truly want to go down this path you should start looking at Composition Batch which is used for adding and removing parts of the catalog at runtime: http://mef.codeplex.com/wikipage?title=Composition%20Batch]]></description>
		<content:encoded><![CDATA[<p>It is possible to do it, but since MEF was not built to be an IOC container it&#8217;s not that straightforward. I would recommend that you choose a proper IOC container over MEF instead of abusing it too much <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, if you truly want to go down this path you should start looking at Composition Batch which is used for adding and removing parts of the catalog at runtime: <a href="http://mef.codeplex.com/wikipage?title=Composition%20Batch" rel="nofollow">http://mef.codeplex.com/wikipage?title=Composition%20Batch</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MEF as an IoC container by Christian</title>
		<link>http://pontusmunck.com/2010/04/07/using-mef-as-an-ioc-container/#comment-182</link>
		<dc:creator><![CDATA[Christian]]></dc:creator>
		<pubDate>Wed, 21 Sep 2011 18:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://pontusm.wordpress.com/?p=101#comment-182</guid>
		<description><![CDATA[I like the GetInstance(.. method. 
How would you implement a Register(... method? TO register types dynamically without having ExportAttribute ?]]></description>
		<content:encoded><![CDATA[<p>I like the GetInstance(.. method.<br />
How would you implement a Register(&#8230; method? TO register types dynamically without having ExportAttribute ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Improving current line highlighting in VS2010 by Pontus</title>
		<link>http://pontusmunck.com/2010/08/17/improving-current-line-highlighting-in-vs2010/#comment-181</link>
		<dc:creator><![CDATA[Pontus]]></dc:creator>
		<pubDate>Thu, 15 Sep 2011 06:04:39 +0000</pubDate>
		<guid isPermaLink="false">https://pontusm.wordpress.com/2010/08/17/improving-current-line-highlighting-in-vs2010/#comment-181</guid>
		<description><![CDATA[Make sure that you have enabled the &quot;Highlight Current Line&quot; feature in the Productivity Tools if you want to customize the highlighting color. You can enable it in the Options: &lt;img src=&quot;http://pontusm.files.wordpress.com/2010/08/image_thumb1.png?w=484&amp;h=280&quot; alt=&quot;screenshot&quot; /&gt;]]></description>
		<content:encoded><![CDATA[<p>Make sure that you have enabled the &#8220;Highlight Current Line&#8221; feature in the Productivity Tools if you want to customize the highlighting color. You can enable it in the Options: <img src="http://pontusm.files.wordpress.com/2010/08/image_thumb1.png?w=484&amp;h=280" alt="screenshot" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Improving current line highlighting in VS2010 by astrohart</title>
		<link>http://pontusmunck.com/2010/08/17/improving-current-line-highlighting-in-vs2010/#comment-180</link>
		<dc:creator><![CDATA[astrohart]]></dc:creator>
		<pubDate>Wed, 14 Sep 2011 21:26:46 +0000</pubDate>
		<guid isPermaLink="false">https://pontusm.wordpress.com/2010/08/17/improving-current-line-highlighting-in-vs2010/#comment-180</guid>
		<description><![CDATA[I don&#039;t have a current line selection in the Display Items box.  There&#039;s Current List Location and Current Statement.]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t have a current line selection in the Display Items box.  There&#8217;s Current List Location and Current Statement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Silverlight unit tests in TeamCity using StatLight by Pontus</title>
		<link>http://pontusmunck.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-133</link>
		<dc:creator><![CDATA[Pontus]]></dc:creator>
		<pubDate>Mon, 22 Aug 2011 08:36:48 +0000</pubDate>
		<guid isPermaLink="false">https://pontusm.wordpress.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-133</guid>
		<description><![CDATA[Thanks for reporting this. It&#039;s something with Wordpress. Don&#039;t know how to fix it. But it&#039;s good you noticed so people can fix it if they copy/paste from here.]]></description>
		<content:encoded><![CDATA[<p>Thanks for reporting this. It&#8217;s something with WordPress. Don&#8217;t know how to fix it. But it&#8217;s good you noticed so people can fix it if they copy/paste from here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Silverlight unit tests in TeamCity using StatLight by Keith</title>
		<link>http://pontusmunck.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-132</link>
		<dc:creator><![CDATA[Keith]]></dc:creator>
		<pubDate>Sat, 20 Aug 2011 18:05:29 +0000</pubDate>
		<guid isPermaLink="false">https://pontusm.wordpress.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-132</guid>
		<description><![CDATA[Darn, the double dash in my comment also got converted to a long dash.]]></description>
		<content:encoded><![CDATA[<p>Darn, the double dash in my comment also got converted to a long dash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Silverlight unit tests in TeamCity using StatLight by Keith</title>
		<link>http://pontusmunck.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-131</link>
		<dc:creator><![CDATA[Keith]]></dc:creator>
		<pubDate>Sat, 20 Aug 2011 18:04:00 +0000</pubDate>
		<guid isPermaLink="false">https://pontusm.wordpress.com/2010/05/13/running-silverlight-unit-tests-in-teamcity-using-statlight/#comment-131</guid>
		<description><![CDATA[There&#039;s a problem with your blog post.  The command parameters should have a double dash for the teamcity argument, like this:
-x=&quot;Source\Tests.Gws3.Client\bin\Release\Tests.Gws3.Client.xap&quot; -v=April2010 --teamcity

In your post the double dash got converted to a single long dash.  Fixing it allows TeamCity to report on the number of unit tests that have passed and failed.]]></description>
		<content:encoded><![CDATA[<p>There&#8217;s a problem with your blog post.  The command parameters should have a double dash for the teamcity argument, like this:<br />
-x=&#8221;Source\Tests.Gws3.Client\bin\Release\Tests.Gws3.Client.xap&#8221; -v=April2010 &#8211;teamcity</p>
<p>In your post the double dash got converted to a single long dash.  Fixing it allows TeamCity to report on the number of unit tests that have passed and failed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

