检索TFS项目描述

时间:2014-02-24 14:05:04

标签: tfs tfs2012 team-project

我需要从现有的TFS 2012安装中收集信息,管理员会在团队项目描述中添加一些有用的数据。

我认为检索它很容易,但我看不到Microsoft.TeamFoundation.WorkItemTracking.Client.Project和Microsoft.TeamFoundation.Server.ProjectInfo的任何属性公开的这些数据。 我想过查询Collection数据库,但表tbl_projects和tbl_project_properties没有描述数据。

2 个答案:

答案 0 :(得分:2)

我相信Microsoft.TeamFoundation.Framework.Client.CatalogResource类具有您要查找的Description属性。下面的代码连接到TFS配置服务器,然后写出项目集合和团队项目名称和描述。

    private static void WriteOutTeamProjects()
    {
        // Connect to Team Foundation Server
        //     Server is the name of the server that is running the application tier for Team Foundation.
        //     Port is the port that Team Foundation uses. The default port is 8080.
        //     VDir is the virtual path to the Team Foundation application. The default path is tfs.
        Uri tfsUri = new Uri("http://vsalm:8080/tfs/");

        TfsConfigurationServer configurationServer = TfsConfigurationServerFactory.GetConfigurationServer(tfsUri);

        // Get the catalog of team project collections
        ReadOnlyCollection<CatalogNode> collectionNodes = configurationServer.CatalogNode.QueryChildren(new[] { CatalogResourceTypes.ProjectCollection }, false, CatalogQueryOptions.None);

        // List the team project collections
        foreach (CatalogNode collectionNode in collectionNodes)
        {
            // Use the InstanceId property to get the team project collection
            Guid collectionId = new Guid(collectionNode.Resource.Properties["InstanceId"]);
            TfsTeamProjectCollection teamProjectCollection = configurationServer.GetTeamProjectCollection(collectionId);

            // Print the name of the team project collection
            Console.WriteLine("Collection: " + teamProjectCollection.Name);

            // Get a catalog of team projects for the collection
            ReadOnlyCollection<CatalogNode> projectNodes = collectionNode.QueryChildren(new[] { CatalogResourceTypes.TeamProject }, false, CatalogQueryOptions.None);

            // List the team projects in the collection
            foreach (CatalogNode projectNode in projectNodes)
            {                    
                Console.WriteLine(" Team Project: " + projectNode.Resource.DisplayName);
                Console.WriteLine("  Description: " + projectNode.Resource.Description);
            }
        }

        Console.WriteLine("Press any key to finish...");
        Console.ReadKey();
    }

答案 1 :(得分:0)

配置数据库上的此查询提供相同的数据。

SELECT [DisplayName] AS ProjectName, [Description] AS ProjectDescription
FROM [Tfs_Configuration].[dbo].[tbl_CatalogResource]
WHERE ResourceType = (
    SELECT [Identifier]
    FROM [Tfs_Configuration].[dbo].[tbl_CatalogResourceType] WHERE [DisplayName] = 'Team Project')
ORDER BY 1