How to get all Iteration Paths with a TFS API 2013
I have been using the TFS API libraries for some time and have been using the follwoing code when interfacing with TFS 2010 to get the Iteration Paths (code from this page )... public IList<string> GetIterationPaths(Project project) { List<string> iterations = new List<string>(); foreach (Node node in project.IterationRootNodes) AddChildren(string.Empty, node, iterations); return iterations; } private void AddChildren(string prefix, Node node, List<string> items) { items.Add(node.Path); foreach (Node item in node.ChildNodes) AddChildren(prefix + node.Name + "/", item, items); } When I was