22 Apr
2009

Source Control Only Team Projects

Category:UncategorizedTag: , :

One customization I make frequently to a TFS Team Project is to create source control + Team Build only team projects.

Reasons to do this vary, but the reason I have is that I like using the Scrum for Team System process template as a Master or Enterprise backlog and holding all work items in there. For that Team Project, I have no source control, as it is just for Work Items. Correspondingly, I need Team Projects that have no work items in them.

There are several ways to pull off a ?Source Control + Build Only? TFS Team Project.

  1. Create a Process Template with no Work Items, Queries, or Reports in it and install it on the server to create new Team Projects. I have done this and it works.
  2. Spool up a Team Project using an existing Process Template . Lock down permissions on the Team Project to not allow any new Work Items to be created by anyone. This works, but is a bit ghetto, IMO.
  3. Spool up a Team Project using an existing Process Template and then pull out everything you don?t want.

This article will demonstrate how to accomplish #3.

Killing Everything But Source Control and Build

This example uses the MSF for Agile process template as the basis for the Team Project we will customize.

Creating the Team Project

  1. Create a Team Project as normal.
  2. Open Team Explorer

Delete the Queries

  1. Open PROJECTNAME |Work Items | Team Queries
  2. Highlight all the queries
  3. Right click | Delete

Delete the Reports

  1. Open PROJECTNAME |Reports
  2. Highlight all the reports
  3. Right click | Delete

Delete WI Type Definitions

Here we need to use the Team Foundation Power Tool available here. Ensure it is installed on the server and the machine you are working on to execute this work.

Create a .cmd file with the following commands in it, supplying your own params for the correct server and team project:

tfpt destroywitd /server:http://tfsrtm08:8080 /project:PS_SCC /workitemtype:Bug /noprompt

tfpt destroywitd /server:http://tfsrtm08:8080 /project:PS_SCC /workitemtype:"Quality of Service Requirement"  /noprompt

tfpt destroywitd /server:http://tfsrtm08:8080 /project:PS_SCC /workitemtype:Risk  /noprompt

tfpt destroywitd /server:http://tfsrtm08:8080 /project:PS_SCC /workitemtype:Scenario  /noprompt

tfpt destroywitd /server:http://tfsrtm08:8080 /project:PS_SCC /workitemtype:Task  /noprompt

Run that sucker!

Now, when I try to add a Work Item in the Team Project, this is what it looks like:

image

Notice there is no option for creating a new Work Item. It simply vanished!

I like to leave the ability to create queries because teams will often create queries looking back the Work Items in other Team Projects and simply use the SCC only project as a means of isolating their queries.

3 thoughts on “Source Control Only Team Projects

Comments are closed.