Loïc Baumann's Blog

Team System and .Net stuffs

CodePlex Tools

Synchronize Work Items Types with Team Projects or Process Templates
WITSynchronizer 

Hierarchy between Work Item and Global Workflow management
Work Item Creator

English Posts

French Posts

Tags

Locations of visitors to this page

Community

Email Notifications

Archives

Browse by Tags

All Tags » Coding (RSS)
What you need to know to use the Process Template API
Developing an application using the Team Foundation Server Process Template feature is not an easy task, mainly because of the lack of documentation and sample around it. As I had to deal with it when writing the WITSynchronizer I guess I can share some...
Modifying Work Item Type definition using the Object Model
I'm in the process of easing the installation of the Work Item Creator. To do that, I wanted to detect in runtime if a given Team Project doesn’t have its Work Item Types (WITs) supporting hierarchy and then asking the user to add them. It’s...
Get files from a Label
This post may be helpful for the people who are looking to get the content of a given label in a Workspace. I looked for the code snippet on the internet unsuccessfully, to finally ask for help on the TFS Forum. VersionControlLabel [] labels = sourcecontrol...
Getting Work Items from the Store
There're few things I want to share about the WorkItemStore::GetWorkItem() method. First, it may sound clear for everybody, but: WorkItem a = wis . GetWorkItem ( 10 ); WorkItem b = wis . GetWorkItem ( 10 ); The instance a and b won’t be the...
Simple way to create Work Item Hierarchy
Create a custom field in all your concerned Work Items named "ParentWI" for instance, of type integer. Now, say you want to link two Work Items, the method will looks like: public void LinkWorkItems ( WorkItem parent , WorkItem son ) { RelatedLink...