Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C++
Technical Blog

Using TFS Kanban Column State to the Warehouse

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
29 May 2013CPOL2 min read 16.7K   2   2
How to use TFS Kanban column state to the warehouse

Introduction

For a while, I have been wondering and querying if it is possible to see or use the customizable Kanban columns in the warehouse for reporting purposes. The answer many times comes up as no. Having done a lot of customization of TFS lately, I decided to take a stab at it.

Below is my solution for getting the Kanban column state into the warehouse.

Customize

First, you’ll need to add a custom field to a Work Item Type, in a previous post Getting Html Fields Data into your TFS Warehouse, I show how to add a new field. For this example, we will add a new field that matches the images below:

imageimage

Note: There will be no reason to add this field to the layout.

Build

Next, we will create a new Subscriber. Create a new Class Library and add a reference to Microsoft.TeamFoundation.Framework.Server.dll, v11.0.0.0 – This assembly can be found in the project files attached but also in the directory C:\Program Files\Microsoft Team Foundation Server 11.0\Tools on the TFS server.

The function of interest for this post is the PopulateKanBanColumnField, this method is shown below but you can grab the project code and see the full implementation.

C++
private bool PopulateKanBanColumnField(WorkItem wiCurrent)
{
    bool result = false;

    if (wiCurrent.Fields.Contains("KanBan State") && 
       wiCurrent.Fields["Work Item Type"].Value.ToString() == "User Story")
    {
        foreach (Field field in wiCurrent.Fields)
        {
            if (field.Name.ToLower().EndsWith(".kanban.column") 
            && this.IsGUID(field.Name.Remove(field.Name.ToLower().IndexOf(".kanban.column"))) 
            && wiCurrent.Fields["KanBan State"].Value != field.Value)
            {
                wiCurrent.Fields["KanBan State"].Value = field.Value;
                result = true;
            }
        }
    }

    return result;
}

Deploy

Now compile this and copy the output assemblies to C:\Program Files\Microsoft Team Foundation Server 11.0\Application Tier\Web Services\bin\Plugins on the TFS server.

Warning

  1. Every time you move a work item that this subscriber effects, it will save 2 revisions to the system, i.e.: when moving from Backlog to In progress, it will save the work item and then the rule will fire, find that work item in the store and then update the field.
  2. I have only tested that this works with TFS 2012 Update 2.

Enjoy

Hope this helps and allows for more people to use the Kanban columns in their teams because they can now report on it Smile.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect SSW
South Africa South Africa

Comments and Discussions

 
QuestionDefault Rule From Pin
MoJo260011-Sep-15 3:05
MoJo260011-Sep-15 3:05 
QuestionSource link broken Pin
Timker12-Jun-14 8:00
Timker12-Jun-14 8:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.