<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.arquitecturasoftware.org/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Tiago Pascoal</title><subtitle type="html" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/atom.aspx</id><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/default.aspx" /><link rel="self" type="application/atom+xml" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.61129.2">Community Server</generator><updated>2008-02-19T22:54:16Z</updated><entry><title>Gendarme - Code analysis tool</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx</id><published>2008-12-29T13:20:14Z</published><updated>2008-12-29T13:20:14Z</updated><content type="html">&lt;p&gt;In the last few days I've found a tool called &lt;a href="http://www.mono-project.com/Gendarme"&gt;Gendarme&lt;/a&gt; it is an open source tool from the &lt;a href="http://www.mono-project.com"&gt;Mono Project&lt;/a&gt; that allows you to find problems in .Net (either Mono or Microsoft.Net) applications and libraries. &lt;/p&gt;  &lt;p&gt;It has a rule based system to do the analysis and it can be seen as an FXCop/Team System Code Analysis kind of system. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I haven't counted the number of rules it provides but doing a visual analysis it doesn't seem to have as many rules as Team System Code Analysis. However quantity isn't everything and from my analysis it has a pretty number of good &lt;a href="http://www.mono-project.com/Gendarme#Rules"&gt;rules&lt;/a&gt; (including some categories that the Code Analysis doesn't has like Linq)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The rules are grouped in the following categories&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.BadPractice"&gt;BadPractice&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Concurrency"&gt;Concurrency&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Correctness"&gt;Correctness&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Design"&gt;Design&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Design.Generic"&gt;Design.Generic&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Design.Linq"&gt;Linq&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Exceptions"&gt;Exceptions&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Interoperability"&gt;Interoperability&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Maintainability"&gt;Maintainability&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Naming"&gt;Naming&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Performance"&gt;Performance&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Portability"&gt;Portability&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Security"&gt;Security&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Security.Cas"&gt;Security Cas&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Serialization"&gt;Serialization&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Smells"&gt;Smells&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.mono-project.com/Gendarme.Rules.Ui"&gt;Ui&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can see the full list (and description) of the &lt;a href="http://www.mono-project.com/Gendarme#Rules"&gt;rules here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;There is no Visual Studio integration so you either have to run it from the command line or from a supplied windows form wizard. No MSBuild integration exists either but it would be fairly easy to implement a custom action or just call the &lt;a href="http://msdn.microsoft.com/en-us/library/x8zx72cd.aspx"&gt;execute task&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;Integration with TFS could be either easy or hard depending on how fully integrated you would want it. Since the execution of Gendarme produces a report (XML,HTML,etc) you can execute on your build process and make the HTML report available on the build results (the easy part) or if you want full integration like having the data directly on the TFS build warehouse that could a lot more work.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I've spent a couple of hours running it on a median sized project and it enabled me to fix some naming mistakes, make the code more clear in some areas and even fix an error where disposed wasn't being called.&lt;/p&gt;  &lt;p&gt;During my analysis I also found a bunch of false positives. The tool has a feature that categorizes the issues that it has found with a degree of confidence, which states the degree of confidence that the rule has in the face of the found issue (most false positives had a medium to high degree of confidence which is a bummer). &lt;/p&gt;  &lt;p&gt;The rules documentation is complete and allows you to understand the consequence of not implementing the rule and why you should fix the found issue (although some rules are not documented). &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Definitively a tool to use in the future.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;[cross posted on &lt;a title="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/29/6537.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/29/6537.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/29/6537.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;;subject=Gendarme+-+Code+analysis+tool" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;;title=Gendarme+-+Code+analysis+tool" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;title=Gendarme+-+Code+analysis+tool" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;;title=Gendarme+-+Code+analysis+tool" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx&amp;amp;;title=Gendarme+-+Code+analysis+tool&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/gendarme-code-analysis-tool.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=20699" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Your Code Sucks and I Hate You</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx</id><published>2008-12-29T00:03:22Z</published><updated>2008-12-29T00:03:22Z</updated><content type="html">&lt;p&gt;Did the title catch your attention? Well it did mine.&lt;/p&gt;  &lt;p&gt;It is the title of a &lt;a href="http://mumak.net/stuff/your-code-sucks.html"&gt;post that I've just read&lt;/a&gt;. Although the title seems a little bit &lt;a href="http://en.wikipedia.org/wiki/Troll_(Internet)"&gt;trolish&lt;/a&gt; it's because it probably is, if you read the subtitle you will see the main title is not only trollish but very misleading. The post subtitle is &lt;em&gt;The Social Dynamics of Code Reviews. &lt;/em&gt;&lt;/p&gt;  &lt;p&gt;It mainly talks about code reviews in open source projects&lt;em&gt;&amp;#160;&lt;/em&gt;but most of the knowledge sprung in this post is applicable to close source projects.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Code reviews is something that is hard to do effectively. Even you get past the sociological issues mentioned on the post, without a decent tool it is very hard to keep track what has been reviewed and it's not.&lt;/p&gt;  &lt;p&gt;Code review is one of the area I wish there were some kind of offering for TFS. Granted you can do code reviews with shelve sets and some sort of informal communication via email (assigning code review tasks or even a work item type) but that would give us no metrics or a simple way to keep track which parts of the code have been reviewed.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The more complete solution for TFS seems to be &lt;a href="http://www.codeplex.com/TeamReview"&gt;TeamReview&lt;/a&gt; (freely available on codeplex) which combines specific work item types and a Visual Studio add-in to help you manage the process. While I never tested the tool, I've given some attention to the description and workflow and it seems to work at a very micro level of the code. And the metric tools (what has been reviewed, what is not, etc,etc) seems to be non existant.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;There are some more mature solutions that perhaps can be adapted to be used with TFS:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://review-board.org/"&gt;Review board&lt;/a&gt; which has originated from VMware &lt;/li&gt;    &lt;li&gt;The venerable &lt;a href="http://codestriker.sourceforge.net"&gt;Codestriker&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://sourceforge.net/projects/jcodereview/"&gt;JCR&lt;/a&gt; - which unlike other tools doesn't work at the source control level but with whole files &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;On the commercial side &lt;a href="http://smartbear.com/codecollab.php"&gt;Code Collaborator&lt;/a&gt; from Smart Bear has a good reputation and it works with TFS but never tried it either.&lt;/p&gt;  &lt;p&gt;[Cross Posted on &lt;a title="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/28/6528.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/28/6528.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/28/6528.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;;subject=Your+Code+Sucks+and+I+Hate+You" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;;title=Your+Code+Sucks+and+I+Hate+You" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;title=Your+Code+Sucks+and+I+Hate+You" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;;title=Your+Code+Sucks+and+I+Hate+You" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx&amp;amp;;title=Your+Code+Sucks+and+I+Hate+You&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/29/your-code-sucks-and-i-hate-you.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=20694" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Team System Virtual Machines updates</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx</id><published>2008-12-26T11:11:49Z</published><updated>2008-12-26T11:11:49Z</updated><content type="html">&lt;p&gt;TheVSTS 2008 virtual machines that are currently available are set to expire on 31 December, so Microsoft by the magical hand of &lt;a href="http://www.pluralsight.com/community/blogs/brian/"&gt;Brian Randell&lt;/a&gt; dressed as &lt;a href="http://en.wikipedia.org/wiki/Santa"&gt;santa&lt;/a&gt; (people who know Brian can easily get the resemblance :-)) and updated the virtual machines to expiry on 31 December 2009.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Not only he updated the machine with the latest goodies (power tools, the database edition GDR) but&amp;#160; he also added to the list 2 new virtual images that can be run on Hyper-V, this brings up a total of 4 virtual machines (one with only TFS and another with TFS and Team Suite).&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is what has been included&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;the latest virtual machine additions or integration services components &lt;/li&gt;    &lt;li&gt;all of the latest Windows Updates as of December 1, 2008 &lt;/li&gt;    &lt;li&gt;Team Foundation Server 2008 SP1 &lt;/li&gt;    &lt;li&gt;Visual Studio 2008 Team Suite SP1 &lt;/li&gt;    &lt;li&gt;Team System Web Access 2008 SP1 &lt;/li&gt;    &lt;li&gt;Team Foundation Power Tools, October 2008 update &lt;/li&gt;    &lt;li&gt;the latest MSSCCI provider &lt;/li&gt;    &lt;li&gt;Team Explorer 2005 (this allows you to work with TFS from Visual Studio 2005 which is installed so that you can edit and customize TFS reports) &lt;/li&gt;    &lt;li&gt;the GDR for the product formally known as Visual Studio 2008 Database Edition (aka Data Dude) &lt;/li&gt;    &lt;li&gt;current Process Explorer, Process Monitor, and Background Info &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can get the goods here &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7a809d8-8c9f-439f-8147-948bc6957812&amp;amp;displaylang=en"&gt;VSTS &amp;#8220;all-up&amp;#8221; Virtual PC/Virtual Server image&lt;/a&gt; (6 GB download, expands to 15 GB) &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=72262ead-e49d-43d4-aa45-1da2a27d9a65"&gt;TFS &amp;#8220;only&amp;#8221; Virtual PC/Virtual Server image&lt;/a&gt; (3 GB download, expands to 8 GB) &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9eb65c97-29c9-4d05-ae45-73d22ad4b86e"&gt;VSTS &amp;#8220;all-up&amp;#8221; Hyper-V image&lt;/a&gt; (6 GB download, expands to 15 GB) &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=39644cdd-db4d-445e-b087-dd3e3cdf03fb"&gt;TFS &amp;#8220;only&amp;#8221; Hyper-V image&lt;/a&gt; (3 GB download, expands to 8 GB) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Or read all the details &lt;a href="http://www.pluralsight.com/community/blogs/brian/archive/2008/12/24/happy-holidays-and-look-what-santa-s-brought.aspx"&gt;on Brian's post&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;[Cross Posted on &lt;a href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/26/6506.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/26/6506.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;;subject=Team+System+Virtual+Machines+updates" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;;title=Team+System+Virtual+Machines+updates" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;title=Team+System+Virtual+Machines+updates" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;;title=Team+System+Virtual+Machines+updates" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx&amp;amp;;title=Team+System+Virtual+Machines+updates&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/26/team-system-virtual-machines-updates.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=20590" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>TFS Branching guidance 2.0 has been released</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx</id><published>2008-12-23T21:32:12Z</published><updated>2008-12-23T21:32:12Z</updated><content type="html">&lt;p&gt;When I give a Team System Workshop one of the topics that tends to generate some discusssions is the module about source control and branching (mainly the branching patterns and usage). &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Branching is not an easy subject, it normally requires a mindset shift for people who are not used to it. Specially when there are so many ways of doing it. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;In TFS 2010 branching is going to be a lot easier&amp;#160; and powerful since the team has been spending a lot of time on &lt;a href="http://channel9.msdn.com/posts/VisualStudio/Branching-and-Merging-Visualization-with-Team-Foundation-Server-2010/"&gt;branching and visualization support&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;When it comes to branching patterns my bible is still &lt;a href="http://www.amazon.com/Software-Configuration-Management-Patterns-Integration/dp/0201741172"&gt;Software Configuration Management Patterns: Effective Teamwork, Practical Integration&lt;/a&gt; but a few days ago the VSTS Rangers with the collaboration of the VSTS MVP's has launched the second release of the &lt;a href="http://www.codeplex.com/TFSBranchingGuideII"&gt;TFS Branching Guide&lt;/a&gt;&amp;#160; on codeplex.&amp;#160; This will help TFS users deal with branching scenarios and usages in TFS.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;What will you get if you download the package? &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;TFS Branching Guide - Main 2.0      &lt;ul&gt;       &lt;li&gt;This is the main article which briefly explains branching concepts and introduces 3 levels of the most common branching scenario &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;TFS Branching Guide - Scenarios 2.0      &lt;ul&gt;       &lt;li&gt;A collection of less common branching scenarios &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;TFS Branching Guide - Q&amp;amp;A 2.0      &lt;ul&gt;       &lt;li&gt;A set of most frequently asked questions with answers &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;TFS Branching Guide - Drawings 2.0      &lt;ul&gt;       &lt;li&gt;A set of branching drawings in different formats including a large branching poster &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;TFS Branching Guide - Labs 2.0      &lt;ul&gt;       &lt;li&gt;A couple of examples for hands on labs with step by step instruction for practicing the branching scenarios &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;[Cross posted on &lt;a title="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/23/6467.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/23/6467.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/23/6467.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;;subject=TFS+Branching+guidance+2.0+has+been+released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;;title=TFS+Branching+guidance+2.0+has+been+released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;title=TFS+Branching+guidance+2.0+has+been+released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;;title=TFS+Branching+guidance+2.0+has+been+released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx&amp;amp;;title=TFS+Branching+guidance+2.0+has+been+released&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/23/tfs-branching-guidance-2-0-has-been-released.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=20472" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Nova Comunidade VSTS no Brasil</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx</id><published>2008-12-06T19:18:47Z</published><updated>2008-12-06T19:18:47Z</updated><content type="html">&lt;p&gt;&lt;/p&gt;  &lt;p&gt;Foi lan&amp;#231;ado no brasil uma nova comunidade virtual de Visual Studio Team System.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#201; muito recente mas j&amp;#225; conta com alguns membros.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Para os interessados, podem encontr&amp;#225;-la &lt;a href="http://www.vstsbrasil.net/"&gt;aqui&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;[Crossposted em &lt;a title="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/06/6253.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/06/6253.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/12/06/6253.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;;subject=Nova+Comunidade+VSTS+no+Brasil" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;;title=Nova+Comunidade+VSTS+no+Brasil" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;title=Nova+Comunidade+VSTS+no+Brasil" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;;title=Nova+Comunidade+VSTS+no+Brasil" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx&amp;amp;;title=Nova+Comunidade+VSTS+no+Brasil&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/12/06/nova-comunidade-vsts-no-brasil.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=20170" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Team Foundation Power Tools - October 2008 Just Released</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx</id><published>2008-11-08T14:50:06Z</published><updated>2008-11-08T14:50:06Z</updated><content type="html">&lt;p&gt;The Team Foundation Power Tool has just been released.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;It includes major news since the last release.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Major features highlights:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Explorer Extension - That's right you will now be able to do operations on TFS source controlled files directly from windows explorer!!!! &lt;/li&gt;    &lt;li&gt;The concept of Teams (team tools) - The concepts have teams have been introduced. You can see teams inside team explorer (it even has IM integration). It also allows you to have team queries (work items for the team (or sub teams) instead of just my work teams) &lt;/li&gt;    &lt;li&gt;Power Shell Extensions - If you are a scripting&amp;#160; buff youwill love this &lt;/li&gt;    &lt;li&gt;TFS Server Manager - Watch statistics and data about TFS usage (this is the tool &lt;a href="http://blogs.msdn.com/bharry"&gt;Brian Harry&lt;/a&gt; uses to give us the TFS dogfood statistics on his blog) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The installer as also been greatly improved (for example the setup is now per machine instead of per user), tfpt.exe had some additions and the help file has been improved.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The Team Tools has a GREAT feature. It allows you to automatically get updates for custom contents (custom controls, check in policies,..) this will greatly reduce the hassle of manually distributing custom controls and check in policies.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Go grab it. I still haven't tried the final version but i have been using a pre release version for a few weeks and it's great (love the team tools).&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Kudos for Team System Team to deliver value added tools between the major releases. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;It is available for &lt;a href="http://msdn.microsoft.com/en-us/tfs2008/bb980963.aspx"&gt;download here&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;[Cross Posted on &lt;a title="http://agilior.pt/blogs/tiago.pascoal/archive/2008/11/08/5898.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/11/08/5898.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/11/08/5898.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;;subject=Team+Foundation+Power+Tools+-+October+2008+Just+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;;title=Team+Foundation+Power+Tools+-+October+2008+Just+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;title=Team+Foundation+Power+Tools+-+October+2008+Just+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;;title=Team+Foundation+Power+Tools+-+October+2008+Just+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx&amp;amp;;title=Team+Foundation+Power+Tools+-+October+2008+Just+Released&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/11/08/team-foundation-power-tools-october-2008-just-released.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=19150" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>It just doesn't make sense....</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx</id><published>2008-07-21T04:48:29Z</published><updated>2008-07-21T04:48:29Z</updated><content type="html">&lt;p&gt;According to this &lt;a href="http://www.telegraph.co.uk/earth/main.jhtml?xml=/earth/2008/07/18/ealeopard118.xml"&gt;article&lt;/a&gt; for the first time there is documented case of a Leopard hunting down a crocodile. &lt;/p&gt;  &lt;p&gt;While it doesn't seem to be that big of a crocodile nonetheless it seems like a feat for the leopard (I certainly wouldn't mess with either one of them :-)). &lt;/p&gt;  &lt;p&gt;But the comment that caught my attention was:&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&amp;quot;It just doesn't make sense. The meat you get out of a crocodile is just not worth the risk it takes a predator to acquire.&amp;quot;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;I have no idea why the Leopard did or what his motivations were.&amp;#160; But I drew an immediate parallel to a lot of things that happen in IT. A high risk move for a ridiculous amount of meat. :-) &lt;/p&gt; The &lt;a href="http://www.halbrindley.com/"&gt;photographer's site&lt;/a&gt; has a &lt;a href="http://www.halbrindley.com/photos/leopard/01.html"&gt;take on the story&lt;/a&gt;&amp;#160; and the &lt;a href="http://www.halbrindley.com/photos/leopard-seq/01.html"&gt;full sequence of photos&lt;/a&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;;subject=It+just+doesn%27t+make+sense...." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;;title=It+just+doesn%27t+make+sense...." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;title=It+just+doesn%27t+make+sense...." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;;title=It+just+doesn%27t+make+sense...." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx&amp;amp;;title=It+just+doesn%27t+make+sense....&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/21/it-just-doesn-t-make-sense.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=14745" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>TFS: I have a volume license but can't find my serial number anywhere...</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx</id><published>2008-07-05T08:25:15Z</published><updated>2008-07-05T08:25:15Z</updated><content type="html">&lt;p&gt;This is the question I hear a lot.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;People install a TFS trial and when they license it with a volume license agreement but they can't find their serial number to upgrade from trial to licensed version.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;After failing to find the key, they do the sensible thing. Call Support. :-) Which normally doesn't help.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Here is the recipe to quick found your key.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Download the TFS ISO file from the volume licensing site.&lt;/p&gt;  &lt;p&gt;Either burn the image or use an ISO reader to see it's contents.&lt;/p&gt;  &lt;p&gt;There should be a folder called AT which contains a file called setup.sdb&lt;/p&gt;  &lt;p&gt;Open setup.sdb with a text editor (notepad will do fine) and search for the string &lt;strong&gt;Product Key &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The next line contains the product key.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Voil&amp;#225;. You are now read to fire up TFS setup (control panel-&amp;gt;add/remove programs) and enter your serial key.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;;subject=TFS%3a+I+have+a+volume+license+but+can%27t+find+my+serial+number+anywhere..." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;;title=TFS%3a+I+have+a+volume+license+but+can%27t+find+my+serial+number+anywhere..." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;title=TFS%3a+I+have+a+volume+license+but+can%27t+find+my+serial+number+anywhere..." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;;title=TFS%3a+I+have+a+volume+license+but+can%27t+find+my+serial+number+anywhere..." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx&amp;amp;;title=TFS%3a+I+have+a+volume+license+but+can%27t+find+my+serial+number+anywhere...&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/07/05/tfs-i-have-a-volume-license-but-can-t-find-my-serial-number-anywhere.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=14500" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Molding the shape of TFS next version</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx</id><published>2008-03-29T15:05:51Z</published><updated>2008-03-29T15:05:51Z</updated><content type="html">&lt;p&gt;Once again Team System Product group is asking for the community feedback on some of the upcoming features of TFS next's version.&lt;/p&gt;  &lt;p&gt;You have the opportunity to influence the future of TFS to match your needs. The product group has released three more specifications that are open for discussion:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://download.microsoft.com/download/e/0/e/e0ed04ec-bf14-4dd6-b5ad-22094b128498/Bug-Submission-Portal.xps"&gt;Codename &amp;#8220;TFS Bug Submission Portal&amp;#8221; Power Tool for Team Foundation Server 2008&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://download.microsoft.com/download/e/0/e/e0ed04ec-bf14-4dd6-b5ad-22094b128498/Send-Mail-for-TFS.xps"&gt;Send Mail from TFS&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://download.microsoft.com/download/e/0/e/e0ed04ec-bf14-4dd6-b5ad-22094b128498/TFS-Linking.xps"&gt;Core Linking Work Item Tracking&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The entire list of already published specs are &lt;a href="http://msdn2.microsoft.com/en-us/teamsystem/bb936702.aspx"&gt;here&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Even though shaping up the future of the next version is great, what is even greater is using Team System 2008 to help us solve our current problems. :-) &lt;/p&gt;  &lt;p&gt;I you haven't tried Team System 2008 in the next few days you will have the opportunity to do so. Since the current version &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7a809d8-8c9f-439f-8147-948bc6957812&amp;amp;displaylang=en"&gt;VSTS VPC freely available images&lt;/a&gt; are set to expire on 1st of April.&lt;/p&gt;  &lt;p&gt;A new version of the VPC has been already sent to the distribution server and as we speak (well as i write :-)) it is being replicated to the CDN servers, the release announcement is imminent. :-)&lt;/p&gt;  &lt;p&gt;This new version brings some extra goodies. Besides a Team Suite version of VS and TFS server it also has VSTS 2008 Hands on Labs installed (also available has a separate download if you don't want to download the VPC).&lt;/p&gt;  &lt;p&gt;Watch out of the announcement of the release very soon on &lt;a href="http://mcwtech.com/cs/blogs/brianr/"&gt;Brian Randell blog&lt;/a&gt;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;;subject=Molding+the+shape+of+TFS+next+version" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;;title=Molding+the+shape+of+TFS+next+version" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;title=Molding+the+shape+of+TFS+next+version" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;;title=Molding+the+shape+of+TFS+next+version" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx&amp;amp;;title=Molding+the+shape+of+TFS+next+version&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/29/molding-the-shape-of-tfs-next-version.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=9236" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Project Server 2007 VSTS Connector installation gotchas on TFS 2005</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx</id><published>2008-03-28T14:12:47Z</published><updated>2008-03-28T14:12:47Z</updated><content type="html">&lt;p&gt;On the 10th of March &lt;a href="http://blogs.msdn.com/lfenster/"&gt;Lenny Fenster&lt;/a&gt; released a new version of the &lt;a href="http://codeplex.com/pstfsconnector"&gt;Project Server 2007 VSTS Connector&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;This releases fixes some bugs and adds support for TFS 2008, unfortunately Lenny forgot (most probably lacked the time to do it) to update the requirements list. We had some issues while upgrading the older version of the connector on a installation still using TFS 2005.&lt;/p&gt;  &lt;p&gt;The components install without problems except the connector for Team Foundation server (the third option on the installer). The installer aborts stating it had unexpected error. The log file hasn't any useful information.&lt;/p&gt;  &lt;p&gt;After some heavy digging (and nagging Lenny over IM :-)) I figured out that the problem lied&amp;#160; on the fact that the connector installer references to TFS 2008 API instead of TFS 2005&lt;/p&gt;  &lt;p&gt;To solve the installation problem you have two choices:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Install the TFS 2008 API on the server the connector is going to run. The only way to install the API is by installing Team Explorer 2008 &lt;/li&gt;    &lt;li&gt;After the first time the installation fails, &lt;a href="http://msdn2.microsoft.com/en-us/library/ms973843.aspx"&gt;create a standard .Net policy redirection DLL file configuration file&lt;/a&gt; on the installation folder temporary directory (c:\windows\PS2007-TFS Connector) so when the code attempts to to access TFS using the API it uses 2005 API instead of the 2008 version. I haven't gone this path, since this would also involve applying the same redirection on the connector. So in theory this should work but I haven't tested it. :-) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The web site to manage the connector is also configured to use framework 3.5 so you must install framework 3.5 on that machine (if the web site is installed in the same machine as the TFS connector then no need to worry about this since Team Explorer 2008 also installs framework 3.5).&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Lost a bunch of hair on this one, I hope this saves you same time if you are in a similar situation.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;;subject=Project+Server+2007+VSTS+Connector+installation+gotchas+on+TFS+2005" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;;title=Project+Server+2007+VSTS+Connector+installation+gotchas+on+TFS+2005" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;title=Project+Server+2007+VSTS+Connector+installation+gotchas+on+TFS+2005" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;;title=Project+Server+2007+VSTS+Connector+installation+gotchas+on+TFS+2005" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx&amp;amp;;title=Project+Server+2007+VSTS+Connector+installation+gotchas+on+TFS+2005&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/28/project-server-2007-vsts-connector-installation-gotchas-on-tfs-2005.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=9233" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Requirements Management with Team System</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx</id><published>2008-03-22T19:05:26Z</published><updated>2008-03-22T19:05:26Z</updated><content type="html">&lt;p&gt;Requirements management is considered one of the &lt;a href="http://en.wikipedia.org/wiki/Achilles'_heel"&gt;Achilles heels&lt;/a&gt; of Team System but that is not entirely true. Requirements management is a term that refers to a very broad set of different activities that concern the lifecycle of requirements life.&lt;/p&gt;  &lt;p&gt;But there is a certain truth to this pre conceived idea, since Team System offer is (practically) non existent when it comes to requirements elicitation (which is widely confused with requirements management, since requirements elicitation is just a small part of requirements management).&lt;/p&gt;  &lt;p&gt;When it comes to requirement management Team System is (imho) only ill served in the elicitation phased. And by that I only mean out of the box support, since there are offers from several partners to help you handle this shortcoming in Team System.&lt;/p&gt;  &lt;p&gt;One of my my favorites for this task is the young &lt;a href="http://www.personifydesign.com/products/teamspec/teamspec.aspx"&gt;TeamSpec&lt;/a&gt;&amp;#160; from Personify Design, if you are more curious about TeamSpec you can watch &lt;a href="http://channel9.msdn.com/Showpost.aspx?postid=389257"&gt;Juan Perez talking about it oh Channel 9&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Microsoft recently launched a &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EEF7BB41-C686-4C9F-990B-F78ACE01C191&amp;amp;displaylang=en"&gt;Requirements Management with Visual Studio Team System White Paper&lt;/a&gt; explaining all the phases of requirements management, how they relate to Team System and some partner products that will help you fill the gaps that Team System currently has.&lt;/p&gt;  &lt;p&gt;As a bonus the white paper also includes some information how this gap will be reduced in Rosario (Team System next version).&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;;subject=Requirements+Management+with+Team+System" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;;title=Requirements+Management+with+Team+System" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;title=Requirements+Management+with+Team+System" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;;title=Requirements+Management+with+Team+System" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx&amp;amp;;title=Requirements+Management+with+Team+System&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/22/requirements-management-with-team-system.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=8708" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>TeamPrise 3.0 Released</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx</id><published>2008-03-19T14:12:30Z</published><updated>2008-03-19T14:12:30Z</updated><content type="html">&lt;p&gt;Just got a mail from &lt;a href="http://www.woodwardweb.com"&gt;Martin Woodward&lt;/a&gt; that &lt;a href="http://www.woodwardweb.com/teamprise/000421.html"&gt;TeamPrise 3.0&lt;/a&gt; has been released. TeamPrise is an amazing piece of technology that allows you to use Team Foundation Server in a cross platform perspective. &lt;/p&gt;  &lt;p&gt;If you have cross platform development environment with developers working on different systems like Linux or Mac OS X there are no excuses not to use Team Foundation Server. TeamPrise is the solution that allows you to access Team Foundation Server from any environment that runs java or the Eclipse IDE.&lt;/p&gt;  &lt;p&gt;If you are curious on what is new, you can read the &lt;a href="http://download.teamprise.com/cs/3.0/release-notes/release-notes.html"&gt;changelog for version 3.0&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;If you had attended &lt;a href="http://www.techdays.pt/session/2008/VST02.aspx"&gt;my session&lt;/a&gt; last week on &lt;a href="http://techdays.pt"&gt;Techdays&lt;/a&gt; you could have watched my demoing TeamPrise (still v2.0) running in an Linux Machine. :-)&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;;subject=TeamPrise+3.0+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;;title=TeamPrise+3.0+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;title=TeamPrise+3.0+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;;title=TeamPrise+3.0+Released" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx&amp;amp;;title=TeamPrise+3.0+Released&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/19/teamprise-3-0-released.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=8643" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Visual Studio Features comparison</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx</id><published>2008-03-05T22:47:44Z</published><updated>2008-03-05T22:47:44Z</updated><content type="html">&lt;p&gt;Off all the questions that i got asked, one of the most common is &amp;quot;which edition of Visual studio do I need to take advantage of feature X&amp;quot;. It is usually a though question because the number VS of features is huge and the number of editions isn't also very small. :-)&lt;/p&gt;  &lt;p&gt;If I can't answer the question directly from top of my head I tend to consult the &lt;a href="http://msdn2.microsoft.com/en-us/vstudio/products/cc149003.aspx"&gt;Visual Studio Features Comparison list&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Is is so huge that there isn't a single matrix that conveys all information, but it is split among 24 (!!!) feature matrixes. :-)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;[Cross posted on &lt;a title="http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/05/3826.aspx" href="http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/05/3826.aspx"&gt;http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/05/3826.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;;subject=Visual+Studio+Features+comparison" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;;title=Visual+Studio+Features+comparison" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;title=Visual+Studio+Features+comparison" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;;title=Visual+Studio+Features+comparison" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx&amp;amp;;title=Visual+Studio+Features+comparison&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/05/visual-studio-features-comparison.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=8364" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>VST09 - It seems I will do another session on Techdays.....</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx</id><published>2008-03-02T11:53:03Z</published><updated>2008-03-02T11:53:03Z</updated><content type="html">&lt;p&gt;I have been informed that due to my recent misdeeds I will have to step in and do another session on Techdays. &lt;/p&gt;  &lt;p&gt;Although I don't know if this is going to be a punishment for me or if it is my co-presenter &lt;a href="http://www.techdays.pt/speakerinfo.aspx?speakerId=46"&gt;Miguel Madeira&lt;/a&gt; that is going to be pay the penalty for having me on stage with him. :-)&lt;/p&gt;  &lt;p&gt;This is session &lt;a href="http://www.techdays.pt/session/2008/VST09.aspx"&gt;VST09&lt;/a&gt; and we are going to talk about Team Build, and how you can use it to automate your build present and how you can use on you your agile development process by leveraging the continuous integration capabilities.&lt;/p&gt;  &lt;p&gt;Don't worry, if you are yet not aware of what is continuous integration at the end of the session you will. We will explain what is continuous integration, what are the advantages and where does continuous integration fits in Team Build within the build process and the unit testing.&lt;/p&gt;  &lt;p&gt;We will also explain how you can leverage the build process to help you in other areas of your development process but we don't want to spoil all the surprises, see you in the session. :-)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;[Cross Posted on &lt;a title="http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/02/3799.aspx" href="http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/02/3799.aspx"&gt;http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/03/02/3799.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;;subject=VST09+-+It+seems+I+will+do+another+session+on+Techdays....." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;;title=VST09+-+It+seems+I+will+do+another+session+on+Techdays....." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;title=VST09+-+It+seems+I+will+do+another+session+on+Techdays....." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;;title=VST09+-+It+seems+I+will+do+another+session+on+Techdays....." target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx&amp;amp;;title=VST09+-+It+seems+I+will+do+another+session+on+Techdays.....&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/03/02/vst09-it-seems-i-will-do-another-session-on-techdays.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=7934" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry><entry><title>Visual Studio Team System Best Practices pre session on Techdays feedback</title><link rel="alternate" type="text/html" href="http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx" /><id>http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx</id><published>2008-02-19T22:54:16Z</published><updated>2008-02-19T22:54:16Z</updated><content type="html">&lt;p&gt;It seems I'm going to present a session on &lt;a href="http://techdays.pt"&gt;Techdays 2008&lt;/a&gt; on Team System best practices. &lt;/p&gt;  &lt;p&gt;I would like to know what are your expectations for such a session and what kind of topics you would like to be covered on this session? &lt;/p&gt;  &lt;p&gt;I would love to have your feedback. :-)&lt;/p&gt;  &lt;p&gt;[Cross posted on &lt;a title="http://www.agilior.pt/blogs/tiago.pascoal/archive/2008/02/19/3728.aspx" href="http://agilior.pt/blogs/tiago.pascoal/archive/2008/02/19/3728.aspx"&gt;http://agilior.pt/blogs/tiago.pascoal/archive/2008/02/19/3728.aspx&lt;/a&gt;]&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;;subject=Visual+Studio+Team+System+Best+Practices+pre+session+on+Techdays+feedback" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;;title=Visual+Studio+Team+System+Best+Practices+pre+session+on+Techdays+feedback" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;title=Visual+Studio+Team+System+Best+Practices+pre+session+on+Techdays+feedback" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;;title=Visual+Studio+Team+System+Best+Practices+pre+session+on+Techdays+feedback" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx&amp;amp;;title=Visual+Studio+Team+System+Best+Practices+pre+session+on+Techdays+feedback&amp;amp;;top=1" target="_blank" title = "Post http://www.arquitecturasoftware.org/blogs/tiagopascoal/archive/2008/02/19/visual-studio-team-system-best-practices-pre-session-on-techdays-feedback.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://www.arquitecturasoftware.org/aggbug.aspx?PostID=1438" width="1" height="1"&gt;</content><author><name>tspascoal</name><uri>http://www.arquitecturasoftware.org/members/tspascoal.aspx</uri></author></entry></feed>