TFS 11 2012 API Questions : query capacity and days off
I need to get several things done with the TFS API. Among those, I have to read the Resource planning information for the sprints of each Project to display in a WPF UI. Tagging along this guide , I now have the following method: private TfsTeamService _teamService; private ICommonStructureService4 _structureService; TeamSettingsConfigurationService _teamSettingsConfigurationService; public void GetUserIterationAssignments(IList<ProjectInfo> projects) { foreach (ProjectInfo project in projects) { Console.WriteLine(project.Name); TeamFoundationTeam team = _teamService.QueryTeams(project.Uri)