Reputation: 2725
Background
I am working to update around 40 Team Projects in a single collection under TFS 2010. Each Team Project will use the same relative iteration paths to support common team queries, reports, dashboards etc.
The Challenge
Although the relative names of the iterations are the same, they do include the Team Project in the path which makes them distinct in terms of queries and reports etc.
My goals are:
Current Definition:
Project A / Current Development / Iteration X,
Project Z / Current Development / Iteration X ...
Ideal Definition:
Current Development / Iteration X
This would provide a truly common iteration that would meet the above stated objectives.
Any ideas on if and how this might be accomplished?
Upvotes: 0
Views: 355
Reputation: 14164
This would certainly make a useful feature, but currently there's no OOTB support for it. You can use the In
operator to avoid multiple And
conditions. Then you can simply copy-paste the entire condition row to other queries.
Field Operator Value
Iteration Path In Project A\Current Development\Iteration X,Project Z\Current Development\Iteration 1
Upvotes: 1