TFS Embed Work Items In Check-In Comments

TFS Embed Work Items In Check-In Comments allows developers to embed work items in their check-in comments, making it easier than finding and selecting the work items via queries. It consists of a C# server side event handler and optional Check-In Policies in C# and Java.

Export Test Cases From TFS

This project lets the users to export the test cases present in form Work items in TFS 2010 to MS Excel.

git-tf-migration-powershell

PowerShell Script to assist migrating source code and revision history between TFS Team Project Collections using Git and Git-TF.

Multiple Child WorkItem

MultiChildWorkItem provides ability to link multiple workItems. No longer we need to create as many workitems as we need and link it manually. This TFS add in helps you to create linked workitem with a few clicks.

NDepend TFS 2010 integration

ndependtfs.zip (366 kB)
NDepend TFS 2010 integration provides build activities, a build report customization addin, and extends the TFS Warehouse in order to leverage NDepend quality statistics for your projects.

TFS Team Project Manager

TFS Team Project Manager automates various administrative tasks across Team Projects in Team Foundation Server.

TechDays Kanban

TFS 2010 Kanban Process Template sample and ASP.NET Kanban Board

Test Case Extractor - exports Test Cases from TFS to Excel

Test Case Extractor allows you to export test cases from TFS to Microsoft Excel. All the test cases which belong to the selected test suite and sub suites will be exported. The generated Excel work book will have the following details:

Test Case Runner - Runs test cases and updates the status as Pass/Fail/Blocked

This tool automates the test case execution in Microsoft Test Manager. It runs the selected test cases and updates their status as specified by the user. The status can be Pass/Fail/Blocked.

TFS Test Steps Editor

Lightweight editing and results publishing for Visual Studio Microsoft Test Manager test case steps.

TFS2010 TestProject Extensions Libraries

Conjunto de Librerias y Templates para mejorar la construccion de WebTest utilizando VSTS 2010 y TFS2010 Set of custom libraries and templates to reinforce and accelerate VSTS2010 / TFS2010 webtest design

TFS Backlog Manager

TFS Backlog Manager is an easy way to view and edit the backlog of work-items, in a way similar to the Scrumworks two panel setup. On the left are the committed work items for the selected sprints. On the right are the uncommitted backlog work items. You drag-and-drop work items between the two columns to fill up the sprints with work. Selecting an work item will display more details and allow editing the work item. It's done in C# and WPF.

Re-Usable Button Control for TFS Work Item Definitions

Provides a button control for use in TFS work item tracking.

TFSChangeLog

TFS ChangeLog allows Team Foundation Server (TFS) users to extract information related to Changesets and associated WorkItems into XML format that is transformed into HTML. TFSChangeLog automatically produces Change Log / Release Notes based on selected changeset range. TFS holds file version history via registered changesets and associated WorkItems. This exact information will be used for generating release notes. Configuration / Release manager can either use system data fields or custom fields for the purpose of generating release notes contents. Powerful XSLT 2.0 support for transforming data from raw XML format is provided out of the box which certainly opens up possibility to generate data in various formats. Support for XSLT 2.0 makes it very easy to apply filtering conditions for transformations output as required by the users. Supported command line interface can be used as part of scheduled task that can generate change log / release notes on a nightly basis.

TFS Collaboration Providers

tfscollab.zip (16,0 MB)
Enable support for 3rd party instant messenger clients on the TFS Power Tools 2008, 2010 and 2012.

TFS Event Manager

Allows you to manage Team Foundation Server event subscriptions as well as help troubleshoot event job processing.

TFS Event Subscribers

Initial release of Branch Policy in TFS Event Subscribers

TFS Guides

TFSGuides.zip (4,4 MB)
TFS Guides is for all the TFS users. For beginers, the guides will help to have an easy start using the basic functionality, and for more advanced users, the guides will provide help for the advanced functionality of the Team System.

TfsMerge

tfsmerge.zip (22,8 MB)
Tfs merge tool. Make merge job quicker. Support hierarchy merge, quick watch changeset by id, quick watch changeset track by id, quick watch wi by id, etc...

Team Foundation Project Provisioner

Programmatically create and provision a new TFS Team Project. Developed for VS/TFS 2010, but can be adapted for VS/TFS 2008. All feedback is welcome! As the TFS administrator, I've always wanted a customized tool for creating and provisioning new Team Projects, rather than just using the Team Explorer dialogs. Not only do I need the project names to have a specific syntax (we require some minimal metadata in the name), but there are also repetitive tasks (establishing Group Membership security, etc.) that every new Project requires. Certainly there must be a Team Foundation API that I can use to create new Projects programmatically -- doh! There isn't one. What there is, currently, is a client-side Team Explorer command called "File.BatchNewTeamProject", which is barely documented, and a bit awkward to use: you code up an XML file that describes your Project, and pass it to BatchNewTeamProject as an argument. But even this is only a partial solution (your XML file is just a replacement for the "New Team Project..." wizard dialogs) -- you still can't automate the entire provisioning process. My goal in this project was two-fold: 1) Produce a .Net assembly that encapsulated all the fiddly code necessary to generate the required XML file and invoke BatchNewTeamProject. 2) To write a shop-specific provisioning tool that not only created Team Projects, but also did the necessary post-creation tasks that I needed. Goal #1 is realized by the "TfsProjectTools" assembly, which you can use to write your own custom provisioning tool. Goal #2 is presented here as a desktop app, "TfsProjectProvisionerCodeplex"; this is a simplified version of the tool I wrote for myself, with most of the shop-specific details removed. You can use this as a sample and a starting-point for your own tool.