3

是否可以使用常规对象模型获取 Team Foundation Server 2015 新构建定义,还是我被迫使用 REST API 获取它们?

如果可以使用对象模型,我应该使用什么类?

我能够使用IBuildServer.QueryBuildDefinitions. 是否有与此方法等效的方法,以便我可以访问新的构建定义及其变量?

4

2 回答 2

6

您正在寻找 Build 2.0 REST API。文档可以在这里找到。

有一个客户端包装器作为新 NuGet 包的一部分提供,该Microsoft.TeamFoundation.Build2.WebApi程序集提供了一个BuildHttpClient对象,该对象是访问新构建系统的起点。

于 2015-09-28T09:16:12.830 回答
0

您可以使用以下命令获取构建定义Microsoft.TeamFoundation.Build.WebApi.BuildHttpClient

        var cred = new VssCredentials(new WindowsCredential(new NetworkCredential("{userid}", "{password}")));
        string collectionURL = "http://{tfs-server-url}:8080/tfs/{collection-name}";
        var buildClient = new BuildHttpClient(new Uri(collectionURL, UriKind.Absolute), cred);

        //this is the source project's build definition
        //http://{tfs-server-url}:8080/tfs/{collection-name}/{project-name}/_build?_a=completed&definitionId={buildDefId}
        var buildDefId = 20;
        //"http://{tfs-server-url}:8080/tfs/{collection-name}/{project-name}";
        var projectName = "{project-name}";
        var buildDef = (await buildClient.GetDefinitionAsync(projectName, buildDefId)) as BuildDefinition;

        Console.WriteLine(buildDef.Name);//here you can get all the other properties

VssCredentials类来自Microsoft.VisualStudio.Services.Common组装。全部替换{...}为您的参数。

于 2017-08-18T16:08:36.937 回答