Sign in
|
Join
|
Help
Eran Ruso
עמוד הבית
טופס יצירת קשר
RSS 2.0
Atom 1.0
RSS-תגובות ב
חפש
תגיות
Agile Development
ALM
ALM User Group
Architect
Baseless Merge
Branches Management
Builds
Builds Guide
Coded UI Test
Configuration Management
Custom Control
Dashboards
DEV
Documents Management
Email Alerts
Events
Expert Days
Exploratory Testing
git
GUI Tests
Guides
Installation Guide
ITPRO
Lab Management
Microsoft Test And Lab Management
MTLM
MTM
New Features
NEWS
OFFTOPIC
Patch
Performance Testing
Power Tools
Process Management
Project Server
QA
Quality Assurance
Queries
Queries Guide
SCM
SCRUM
Service Pack
SharePoint
Source Control
SP
Team Build
Team Build 2010
Team Build Process
Team Build Work Flow
team explorer
team explorer 2005
Team Explorer Everywhere
Team System
Team System 2008
Team System 2010
Team System Guide
TECH
Test Hub
Test Management
Test Manager
Test Professional
Test Scribe
Testing
TFS
TFS 11
TFS 2008
TFS 2010
tfs 2010 guide
TFS 2012
TFS Administration
TFS API
tfs Error Troubleshoting
TFS Global List
TFS Guide
tfs guides
TFS Upgrade
TFS Users
TFS2010
troubleshoting error
UI Tests
Unit Test
Update
Upgrade Guide
Video
Video Recording
Virtual Machine
Virtualization
Visual Studio
visual studio 2005
visual studio 2008
Visual Studio 2010
Visual Studio 2010 Architecture Tools
visual studio 2010 upgrade
Visual Studio 2012
VS 11
VS2010
VSTS2010
Web Access
Work Items
Work Items Guide
ארכיון
May 2013 (1)
April 2013 (5)
March 2013 (5)
February 2013 (4)
January 2013 (11)
December 2012 (5)
December 2011 (1)
November 2011 (4)
October 2011 (4)
September 2011 (3)
August 2011 (3)
July 2011 (6)
June 2011 (4)
May 2011 (4)
April 2011 (3)
March 2011 (6)
February 2011 (4)
January 2011 (3)
December 2010 (10)
November 2010 (6)
October 2010 (3)
September 2010 (4)
August 2010 (6)
July 2010 (6)
June 2010 (8)
May 2010 (6)
April 2010 (8)
March 2010 (5)
February 2010 (9)
January 2010 (6)
December 2009 (11)
November 2009 (4)
October 2009 (2)
September 2009 (4)
August 2009 (8)
July 2009 (10)
June 2009 (4)
על הבלוג
ניווט
Home
All Posts
RSS
Popular Tags
Browse by Tags
All Tags
»
TFS API
(
RSS
)
Custom Control
DEV
ITPRO
Team System 2008
Team System 2010
TECH
TFS
TFS 2010
TFS Administration
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...