Browse by Tags
All Tags »
TFS Administration »
DEV »
Visual Studio (
RSS)
With Visual Studio 2012 and TFS 2012 we have a lot of new stuff for Developers, Testers, Managers customers and more, and this is not the end…. Microsoft continues to develop new features for 2012 version. Test Case Management On The Web Brian Harry - We’ve heard from a number of customers that in final acceptance testing, they don’t want to install anything on the test environment that’s not going to be in the production environment. That’s understandable. In our first update, we will...
Tweet Couple of hours ago Brian Harry post about the RC version for VS and TFS 2010 + Alex Golesh post about Windows 8 Release Preview . As we know VS/TFS 2012 comes with many great improvements and new features that push forward the ALM platform allowing more and more people to work as team more easily and much more productively. Visual Studio Product website Eclipse update site for the latest Team Explorer Everywhere preview or the download page Overall summary of changes since the Beta Jason’s...
Since 2009 I ‘m writing about TFS API and several people asked to get an index page with all parts related to TFS API, so here is it: Basic TFS API Part 1: Domain Picker TFS API Part 2: Domain Picker Using Registered Servers (Cache) TFS API Part 3: Get Project List Using ICommonStructureService TFS API Part 4: Get TFS User List (Mail, Sid, Account, Domain) TFS API Part 7: Use IEventService To Get User Event Subscriptions TFS API Part 8: Subscribe/Unsubscribe Events Using IEventService TFS API Part...
TFS API Part 24 – Get All Fields From TFS I got an email regarding previous post ( TFS API Part 6: WorkItemStore - Get Fields From WorkItemType ) how to get Fields without regard to Work Item Type? This is very easy using Team System API. Download Demo Project Step 1: Create Project and Add Reference Create an WPF/WinForm application and add the following references: Microsoft.TeamFoundation.WorkItemTracking.Client.dll (C:\Program Files (x86)\Microsoft Visual Studio 10.0...
Problem Creating Work Item Store From Web Service (Work Item Tracking Metadata Cache) I create a Web Service for a customer and during the development I had a little problem getting WorkItemStore object. Error 1: Cannot complete the operation. An unexpected error occurred. Stake: at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.HandleComException(Int32 hr) at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.DatastoreClass.ConnectEx(String connectionString...
How To: Get Build List Using TFS API Here is a example how to use TFS API to get Builds List per project. In the next post I'll show how to use GetListOfBuild as a Team Build Task that will help you override BuildNumberOverrideTarget . using Microsoft.TeamFoundation.Build.Proxy; TeamFoundationServer tfs = TeamFoundationServerFactory .GetServer(tfsUrl); BuildStore buildStore = ( BuildStore )tfs.GetService( typeof ( BuildStore )); BuildData [] allBuilds = BuildStore .GetListOfBuilds( TeamProject...
How To: Create Generic Work Item Migration Tool For TFS I heard people creates Migration Script with tfs command-line tools but in this tutorial I will show how to create Generic Migration Tool using TFS API. Preparing For Migration Before starting the Migration Tool you need to customize the Work Item Definition so you will not have problems during the Migration. For Example: Remove or Modify <REQUIRED> tags to make sure you will not have validation errors. Make sure that the first transition...