TFSから作業項目を取得するためのwiqlがあります:
SELECT [System.Id], [System.Title], [Area Path], [Iteration Path], [Priority], [Test Owner], [Assigned To],[System.State], [System.Reason]
FROM WorkItems
WHERE [System.WorkItemType] = 'Feature' and
[Iteration Path] != '' and
[Area Path] Under 'MyProject'
フィールド[Assigned To]
は、ユーザーの表示名を返します。そのユーザーの AccountName を取得することは可能ですか? ありがとうございました!