DCSIMG
TFS API - Eran Ruso
Sign in | Join | Help

Browse by Tags

TFS Integration Platform Was Released
15 August 10 04:06 PM | Eran Ruso | with no comments
There is a repeating question that I am being asked a lot, “Can TFS be integrated with other tools? ” The answer to that question is “Yes” TFS has a wide API to connect to so I can write a tool that connects to the API of the TFS from one side and to the API of the other tool from the other side, the result is a connector that integrates between the tools. Today the answer is even simpler , Microsoft has seen the need in the market to connect TFS to other tools and released an Integration Platform...
TFS API: Get Project Members
13 September 09 03:22 PM | Eran Ruso | 3 comment(s)
I have been asked to write a few times custom controls that requires me to get the users from the Team Project. The method that does that is very simple, the example in this post takes the members from the project by the “project name” that was passed to it, and adds them to a combobox named cmbUsers. using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.Proxy; using Microsoft.TeamFoundation.Server; public void GetUsers( TeamFoundationServer server, string project) { cmbUsers.Items...