<?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 This blog has moved to www.freetodev.com</title>
	<atom:link href="http://freetodev.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://freetodev.wordpress.com</link>
	<description>Mike Fourie</description>
	<lastBuildDate>Sat, 10 Mar 2012 13:07:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Versioning Code in TFS &#8211; Revised by You&#8217;re doing it wrong!!! Well some of it at least&#8230; &#124; Well Technically... &#124; ongoing adventures in nerdiness</title>
		<link>http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised/#comment-353</link>
		<dc:creator><![CDATA[You&#8217;re doing it wrong!!! Well some of it at least&#8230; &#124; Well Technically... &#124; ongoing adventures in nerdiness]]></dc:creator>
		<pubDate>Sat, 10 Mar 2012 13:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised#comment-353</guid>
		<description><![CDATA[[...] points are re-iterated in Versioning Code in TFS – Revised along with several solutions including the two detailed above. Moving to TFSVersion to update the [...]]]></description>
		<content:encoded><![CDATA[<p>[...] points are re-iterated in Versioning Code in TFS – Revised along with several solutions including the two detailed above. Moving to TFSVersion to update the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild 4.0 BeforeTargets and AfterTargets by Doug Clutter</title>
		<link>http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets/#comment-352</link>
		<dc:creator><![CDATA[Doug Clutter]]></dc:creator>
		<pubDate>Mon, 27 Feb 2012 17:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets#comment-352</guid>
		<description><![CDATA[Just tested it...AfterTargets does NOT get called if there is an error in your Target.  Bummer.]]></description>
		<content:encoded><![CDATA[<p>Just tested it&#8230;AfterTargets does NOT get called if there is an error in your Target.  Bummer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild 4.0 BeforeTargets and AfterTargets by Doug Clutter</title>
		<link>http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets/#comment-351</link>
		<dc:creator><![CDATA[Doug Clutter]]></dc:creator>
		<pubDate>Mon, 27 Feb 2012 17:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets#comment-351</guid>
		<description><![CDATA[How do AfterTargets behave if there is an error in a target?  Does it still get called?]]></description>
		<content:encoded><![CDATA[<p>How do AfterTargets behave if there is an error in a target?  Does it still get called?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Outlook 2010 Add-ins with Visual Studio 2010 by Travis</title>
		<link>http://freetodev.wordpress.com/2010/03/05/debugging-outlook-2010-add-ins-with-visual-studio-2010/#comment-350</link>
		<dc:creator><![CDATA[Travis]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 18:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2010/03/05/debugging-outlook-2010-add-ins-with-visual-studio-2010#comment-350</guid>
		<description><![CDATA[Thank you for posting this.  I&#039;ve was seeing the same behavior -- it was driving me nuts,.]]></description>
		<content:encoded><![CDATA[<p>Thank you for posting this.  I&#8217;ve was seeing the same behavior &#8212; it was driving me nuts,.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild 4.0 BeforeTargets and AfterTargets by Arun</title>
		<link>http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets/#comment-349</link>
		<dc:creator><![CDATA[Arun]]></dc:creator>
		<pubDate>Tue, 31 Jan 2012 21:44:19 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/06/24/msbuild-4-0-beforetargets-and-aftertargets#comment-349</guid>
		<description><![CDATA[The BeforeTargets does have sense in the following situation:
(1) there are 2 projects, part of the build on them overlap - that is there are targets that both projects would use - essentially this results in creation of a third file for common targets in two
(2) in one project you need to perform an action Before executing a target; at the same time, you do not want that to be coded into the other project or (obviously) in the common targets file
(3) you would create a Before target in the project where you want the change to happen

This case is very much present when I had to make a change to the common &quot;Microsoft.common.Targets&quot; include.]]></description>
		<content:encoded><![CDATA[<p>The BeforeTargets does have sense in the following situation:<br />
(1) there are 2 projects, part of the build on them overlap &#8211; that is there are targets that both projects would use &#8211; essentially this results in creation of a third file for common targets in two<br />
(2) in one project you need to perform an action Before executing a target; at the same time, you do not want that to be coded into the other project or (obviously) in the common targets file<br />
(3) you would create a Before target in the project where you want the change to happen</p>
<p>This case is very much present when I had to make a change to the common &#8220;Microsoft.common.Targets&#8221; include.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Outlook 2010 Add-ins with Visual Studio 2010 by Sander van Haaff</title>
		<link>http://freetodev.wordpress.com/2010/03/05/debugging-outlook-2010-add-ins-with-visual-studio-2010/#comment-347</link>
		<dc:creator><![CDATA[Sander van Haaff]]></dc:creator>
		<pubDate>Fri, 07 Oct 2011 13:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2010/03/05/debugging-outlook-2010-add-ins-with-visual-studio-2010#comment-347</guid>
		<description><![CDATA[wow, had the same problem, googled &quot;outlook debug visual studio&quot;, your blog came first up and it indeed solved my problem. First time I &quot;could&quot; have hit the google &#039;I feel lukcy&#039; button... (but off course didnot) ;-)

Thanx!

Sander]]></description>
		<content:encoded><![CDATA[<p>wow, had the same problem, googled &#8220;outlook debug visual studio&#8221;, your blog came first up and it indeed solved my problem. First time I &#8220;could&#8221; have hit the google &#8216;I feel lukcy&#8217; button&#8230; (but off course didnot) <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Thanx!</p>
<p>Sander</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Versioning Code in TFS &#8211; Revised by Hugo Häggmark &#187; Stuck on &#8220;Cannot create unknown type {clr-namespace:&#8221; in TFS Build?</title>
		<link>http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised/#comment-346</link>
		<dc:creator><![CDATA[Hugo Häggmark &#187; Stuck on &#8220;Cannot create unknown type {clr-namespace:&#8221; in TFS Build?]]></dc:creator>
		<pubDate>Thu, 08 Sep 2011 13:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised#comment-346</guid>
		<description><![CDATA[[...] I took a moment of thought to see what I could do to improve this MSBuild task. I read this great post by Mike Fourie&#8217;s and yet another great post by John Robbins that I really encourage anyone [...]]]></description>
		<content:encoded><![CDATA[<p>[...] I took a moment of thought to see what I could do to improve this MSBuild task. I read this great post by Mike Fourie&#8217;s and yet another great post by John Robbins that I really encourage anyone [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Versioning Code in TFS &#8211; Revised by Ivan Pavlović</title>
		<link>http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised/#comment-345</link>
		<dc:creator><![CDATA[Ivan Pavlović]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 09:43:20 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2009/11/07/versioning-code-in-tfs-revised#comment-345</guid>
		<description><![CDATA[I want to use something like 1.2.123.1 as build number, label for source code and as a part of installer filename (final result of build process). What do you think, is it ok to use output of GetVersion to change the $(BuildNumber)  in that particular case?]]></description>
		<content:encoded><![CDATA[<p>I want to use something like 1.2.123.1 as build number, label for source code and as a part of installer filename (final result of build process). What do you think, is it ok to use output of GetVersion to change the $(BuildNumber)  in that particular case?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Versioning Code in TFS &#8211; Part 2 by Uldis Karlovs-Karlovskis</title>
		<link>http://freetodev.wordpress.com/2008/07/24/versioning-code-in-tfs-part-2/#comment-344</link>
		<dc:creator><![CDATA[Uldis Karlovs-Karlovskis]]></dc:creator>
		<pubDate>Thu, 10 Mar 2011 10:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2008/07/24/versioning-code-in-tfs-part-2#comment-344</guid>
		<description><![CDATA[Since I`m to lazy to write special MSBuild task this fitted my needs. Thank you!

However, having DateTime as version indicator in Enterprise is totally unacceptable and now I need to develop my own versioning policy which is not supported by TFS 2008. I hope things in TFS 2010 are a bit better.]]></description>
		<content:encoded><![CDATA[<p>Since I`m to lazy to write special MSBuild task this fitted my needs. Thank you!</p>
<p>However, having DateTime as version indicator in Enterprise is totally unacceptable and now I need to develop my own versioning policy which is not supported by TFS 2008. I hope things in TFS 2010 are a bit better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Display Custom Build Steps in the Team Build IDE by Uldis Karlovs-Karlovskis</title>
		<link>http://freetodev.wordpress.com/2006/10/15/display-custom-build-steps-in-the-team-build-ide/#comment-343</link>
		<dc:creator><![CDATA[Uldis Karlovs-Karlovskis]]></dc:creator>
		<pubDate>Tue, 08 Mar 2011 09:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://freetodev.wordpress.com/2006/10/15/display-custom-build-steps-in-the-team-build-ide#comment-343</guid>
		<description><![CDATA[Hi,

after 4 years I need this feature again :) 
Seems assembly works only on TFS 2005. Got the same exception as user &quot;unknown&quot;. Mike, can you send me those sources again so I`ll can recompile them for TFS 2008? :)]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>after 4 years I need this feature again <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Seems assembly works only on TFS 2005. Got the same exception as user &#8220;unknown&#8221;. Mike, can you send me those sources again so I`ll can recompile them for TFS 2008? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
