0

我想编写一个简单的程序来查询 TFS 并将所有工作项转换为统一类型的 XML 文件并将它们保存到文件夹中的单独文件中。

我确信这种工作通常已经足够完成,而且非常简单——但我在 Internet 上找不到任何示例,也无法以编程方式连接到 TFS 并仅检索工作项信息。任何人都可以帮助我吗?

非常感谢

4

4 回答 4

1

您应该使用 TFS SDK。

你可以在互联网上找到很多这样的教程

MSDN也会帮助你。

于 2012-10-08T11:44:24.640 回答
1

您可以使用TFS SDK处理工作项。然后你需要做的就是把它转换成你想要的格式。

于 2012-10-08T11:45:36.770 回答
1
    private TfsTeamProjectCollection GetTfsTeamProjectCollection()
    {
        TeamProjectPicker workitemPicker = new TeamProjectPicker(TeamProjectPickerMode.SingleProject, false, new UICredentialsProvider());
        workitemPicker.AcceptButtonText = "workitemPicker.AcceptButtonText";
        workitemPicker.Text = "workitemPicker.Text";
        workitemPicker.ShowDialog();
        if (workitemPicker.SelectedProjects != null || workitemPicker.SelectedProjects.Length > 0)
        {
            return workitemPicker.SelectedTeamProjectCollection;
        }
        return null;
    }

    private WorkItemCollection  WorkItemByQuery(TfsTeamProjectCollection projects, string query)  //query is likethis:SELECT [System.ID], [System.Title] FROM WorkItems WHERE [System.Title] CONTAINS 'Lei Yang'
    {
        WorkItemStore wis = new WorkItemStore(projects);
        return wis.Query (query );
    }

WorkItemCollection 是您想要的。您可以获得 WorkItems 及其属性。

于 2013-03-27T07:04:07.960 回答
0

您可以按照 Lei Yang 的建议获取查询结果。然后开始构建 XML。

XmlDocument xmlDoc = new XmlDocument();
//XML declaration
XmlDeclaration xmlDeclaration = xmlDoc.CreateXmlDeclaration("1.0", "utf-8", null);
// Create the root element
XmlElement rootNode = xmlDoc.CreateElement("WorkItemFieldList");
xmlDoc.InsertBefore(xmlDeclaration, xmlDoc.DocumentElement);
xmlDoc.AppendChild(rootNode);
 //Create a new element and add it to the root node
 XmlElement parentnode = xmlDoc.CreateElement("UserInput");

遍历所有工作项字段值

xmlDoc.DocumentElement.PrependChild(parentnode);
//wiTrees of type WorkItemLinkInfo[] is the result of RunLinkQuery
foreach (var item in wiTrees)
{
int fieldcount = workItemStore.GetWorkItem(item.TargetId).Fields.Count;
while (fieldcount > 0)
{
//Create the required nodes
XmlElement mainNode = xmlDoc.CreateElement(workItemStore.GetWorkItem(item.TargetId).Fields[fieldcount -1].Name.ToString().Replace(" ", "-"));
// retrieve the text 
//Use the custom method NullSafeToString to handle null values and convert them to String.Empty 
XmlText categoryText = xmlDoc.CreateTextNode(workItemStore.GetWorkItem(item.TargetId).Fields[fieldcount - 1].Value.NullSafeToString().ToString());
// append the nodes to the parentNode without the value
parentnode.AppendChild(mainNode);
// save the value of the fields into the nodes
mainNode.AppendChild(categoryText);
fieldcount--;
}

}
// Save to the XML file
xmlDoc.Save("widetails.xml");
于 2015-06-01T18:26:38.700 回答