TFS 2012 API Set TeamSettings Programmatically
Is it possible to set the TeamSettings Programmatically? var teamConfig = _tfs.GetService<TeamSettingsConfigurationService>(); var css = _tfs.GetService<ICommonStructureService4>(); var configs = teamConfig.GetTeamConfigurationsForUser(new[] { _selectedTeamProject.Uri }); var team = configs.Where(c => c.TeamName == "Demo").FirstOrDefault() as TeamConfiguration; The above code gives me the Team Configuration for the team Demo. Look at the TeamSettings, it contains the property BacklogIterationPath, CurrentIterationPath, IterationPaths. How can these be set programmatically? I think I have