Finding IterationID in TFS

前端 未结 4 547
不知归路
不知归路 2021-01-12 21:44

we are linking Iterations within TFS to an external system for tracking projects through the entire company. In the past, we were linking using the IterationPath in a TFS Pr

4条回答
  •  独厮守ぢ
    2021-01-12 22:14

    if you want to print out all TFS Areas then change the following line:

    from: NodeCollection rootNodeCollection = store.Projects[tfsProject].IterationRootNodes;

    to: NodeCollection rootNodeCollection = store.Projects[tfsProject].AreaRootNodes;

    thanks for the code it was helpfull at my end.

提交回复
热议问题