<?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/"
		>
<channel>
	<title>Comments for stuartpreston.net</title>
	<atom:link href="http://stuartpreston.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuartpreston.net/blog</link>
	<description>Blog of Stuart Preston</description>
	<lastBuildDate>Fri, 25 Jun 2010 11:53:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Simple assembly versioning with Team Build 2010 by Marcus</title>
		<link>http://stuartpreston.net/blog/2010/05/02/simple-assembly-versioning-with-team-build-2010/comment-page-1/#comment-85</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Fri, 25 Jun 2010 11:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/05/02/simple-assembly-versioning-with-team-build-2010/#comment-85</guid>
		<description>Great! This is exactly what I was looking for. Many thanks for this explanation! :)</description>
		<content:encoded><![CDATA[<p>Great! This is exactly what I was looking for. Many thanks for this explanation! :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Code Coverage in Visual Studio 2010 by Andrey</title>
		<link>http://stuartpreston.net/blog/2010/04/13/enabling-code-coverage-in-visual-studio-2010/comment-page-1/#comment-71</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Wed, 26 May 2010 14:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/04/13/enabling-code-coverage-in-visual-studio-2010/#comment-71</guid>
		<description>Thanks, I was missing the button there as well. Not the best place for it to be.</description>
		<content:encoded><![CDATA[<p>Thanks, I was missing the button there as well. Not the best place for it to be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TFS2010 API: Retrieving a list of Process Templates on the server. by Stuart Preston</title>
		<link>http://stuartpreston.net/blog/2009/11/07/tfs2010-api-retrieving-a-list-of-process-templates-on-the-server/comment-page-1/#comment-42</link>
		<dc:creator>Stuart Preston</dc:creator>
		<pubDate>Mon, 19 Apr 2010 18:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/?p=12#comment-42</guid>
		<description>Thanks Jason!</description>
		<content:encoded><![CDATA[<p>Thanks Jason!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TFS2010 API: Retrieving a list of Process Templates on the server. by Jeroen Landheer</title>
		<link>http://stuartpreston.net/blog/2009/11/07/tfs2010-api-retrieving-a-list-of-process-templates-on-the-server/comment-page-1/#comment-41</link>
		<dc:creator>Jeroen Landheer</dc:creator>
		<pubDate>Mon, 19 Apr 2010 18:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/?p=12#comment-41</guid>
		<description>Thanks for the sample. Below is the version that works with RTM:

static void Main(string[] args)
    {
      //replace this with the URL to your TFS instance.
      Uri tfsUri = new Uri(&quot;&quot;);

      TfsConfigurationServer config = new TfsConfigurationServer(tfsUri, new UICredentialsProvider());
      config.EnsureAuthenticated();

      ITeamProjectCollectionService collectionService = config.GetService();
      IList collections = collectionService.GetCollections();

      foreach (TeamProjectCollection collection in collections)
      {
        if (collection.State == TeamFoundationServiceHostStatus.Started)
        {
          Console.WriteLine(String.Format(&quot;\nCollection: {0}&quot;, collection.Name));
          IProcessTemplates processTemplates = config.GetTeamProjectCollection(collection.Id).GetService();
          TemplateHeader[] templateHeaders = processTemplates.TemplateHeaders();
          foreach (TemplateHeader header in templateHeaders)
          {
            Console.WriteLine(String.Format(&quot;\t{0} \&quot;{1}\&quot;&quot;, header.TemplateId, header.Name));
          }
        }
      }

      Console.WriteLine(&quot;\nPress any key to continue.&quot;);
      Console.ReadKey();

    }

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for the sample. Below is the version that works with RTM:</p>
<p>static void Main(string[] args)<br />
    {<br />
      //replace this with the URL to your TFS instance.<br />
      Uri tfsUri = new Uri(&#8220;&#8221;);</p>
<p>      TfsConfigurationServer config = new TfsConfigurationServer(tfsUri, new UICredentialsProvider());<br />
      config.EnsureAuthenticated();</p>
<p>      ITeamProjectCollectionService collectionService = config.GetService();<br />
      IList collections = collectionService.GetCollections();</p>
<p>      foreach (TeamProjectCollection collection in collections)<br />
      {<br />
        if (collection.State == TeamFoundationServiceHostStatus.Started)<br />
        {<br />
          Console.WriteLine(String.Format(&#8220;\nCollection: {0}&#8221;, collection.Name));<br />
          IProcessTemplates processTemplates = config.GetTeamProjectCollection(collection.Id).GetService();<br />
          TemplateHeader[] templateHeaders = processTemplates.TemplateHeaders();<br />
          foreach (TemplateHeader header in templateHeaders)<br />
          {<br />
            Console.WriteLine(String.Format(&#8220;\t{0} \&#8221;{1}\&#8221;", header.TemplateId, header.Name));<br />
          }<br />
        }<br />
      }</p>
<p>      Console.WriteLine(&#8220;\nPress any key to continue.&#8221;);<br />
      Console.ReadKey();</p>
<p>    }</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling Code Coverage in Visual Studio 2010 by VSTS Links &#8211; 04/14/2010 &#171; Team System Rocks!</title>
		<link>http://stuartpreston.net/blog/2010/04/13/enabling-code-coverage-in-visual-studio-2010/comment-page-1/#comment-40</link>
		<dc:creator>VSTS Links &#8211; 04/14/2010 &#171; Team System Rocks!</dc:creator>
		<pubDate>Wed, 14 Apr 2010 13:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/04/13/enabling-code-coverage-in-visual-studio-2010/#comment-40</guid>
		<description>[...] Stuart Preston on Enabling Code Coverage in Visual Studio 2010 [...]</description>
		<content:encoded><![CDATA[<p>[...] Stuart Preston on Enabling Code Coverage in Visual Studio 2010 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Report: 1st UK ALM User Group meeting by VSTS Links &#8211; 02/24/2010 &#171; Team System Rocks!</title>
		<link>http://stuartpreston.net/blog/2010/02/14/report-1st-uk-alm-user-group-meeting/comment-page-1/#comment-36</link>
		<dc:creator>VSTS Links &#8211; 02/24/2010 &#171; Team System Rocks!</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/02/14/report-1st-uk-alm-user-group-meeting/#comment-36</guid>
		<description>[...] Stuart Preston on Report: 1st UK ALM User Group Meeting [...]</description>
		<content:encoded><![CDATA[<p>[...] Stuart Preston on Report: 1st UK ALM User Group Meeting [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UK ALM User Group announced by VSTS Links &#8211; 02/05/2010 &#171; Team System Rocks!</title>
		<link>http://stuartpreston.net/blog/2010/01/13/uk-alm-user-group-announced/comment-page-1/#comment-32</link>
		<dc:creator>VSTS Links &#8211; 02/05/2010 &#171; Team System Rocks!</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/2010/01/13/uk-alm-user-group-announced/#comment-32</guid>
		<description>[...] Stuart Preston on UK ALM User Group Announced [...]</description>
		<content:encoded><![CDATA[<p>[...] Stuart Preston on UK ALM User Group Announced [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New blog site by Paulo Reichert</title>
		<link>http://stuartpreston.net/blog/2009/10/13/new-blog-site/comment-page-1/#comment-4</link>
		<dc:creator>Paulo Reichert</dc:creator>
		<pubDate>Thu, 15 Oct 2009 16:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/?p=6#comment-4</guid>
		<description>Can&#039;t wait to see what life after Conchango has got in store for you! :)</description>
		<content:encoded><![CDATA[<p>Can&#8217;t wait to see what life after Conchango has got in store for you! :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New blog site by James Saull</title>
		<link>http://stuartpreston.net/blog/2009/10/13/new-blog-site/comment-page-1/#comment-2</link>
		<dc:creator>James Saull</dc:creator>
		<pubDate>Wed, 14 Oct 2009 09:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://stuartpreston.net/blog/?p=6#comment-2</guid>
		<description>We&#039;re following you already :)</description>
		<content:encoded><![CDATA[<p>We&#8217;re following you already :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
