TFS SDK: Query yesterday's builds
问题 I can query for all builds within a TeamProject as follows: var bServer = teamProjectCollection.GetService<IBuildServer>(); IBuildDetail[] builds = bServer.QueryBuilds("myTeamProject"); This yields all builds within the given myTeamProject . But I am only interested in yesterday's builds. I can obviously filter after I 've gotten the results within builds . Still I am wondering if there exists an overload of QueryBuilds() to get builds within a provided timespan. Background: In my original