简体   繁体   English

TFS 2010 API文档

[英]TFS 2010 API Documentation

So after countless hours crawling the internet I am unable to find any form of proper API for TFS 2010 for C# (I have not installed any SPs yet) I am unable to find any proper results 因此,无数小时爬网后,我无法找到任何形式的适用于TFS 2010 for C#的API(我还没有安装任何SP)我无法找到任何正确的结果

I have found the SDK on the Microsoft site but it is for Java for some reason.. Can anyone help me and provide me with some proper documentation, I have found some relating to VS2005 but this all seems to have been removed from the framework as you can no longer import Microsoft.Core 我在微软网站上找到了SDK,但出于某种原因它是为了Java ..任何人都可以帮助我并提供一些适当的文档,我发现了一些与VS2005有关但这一切似乎已经从框架中删除了您无法再导入Microsoft.Core

Links to items I have looked at: 链接到我看过的项目:

If you're looking for a C# API (likely, based on the question tags), there is the Microsoft.TeamFoundation namespace. 如果您正在寻找C#API(可能基于问题标签),则有Microsoft.TeamFoundation命名空间。 I have used it before. 我以前用过它。

You will need to include the following assemblies as references in your project: 您需要在项目中包含以下程序集作为引用:

  • Microsoft.TeamFoundation.Client
  • Microsoft.TeamFoundation.Common

And one or more of the following based on your specific needs: 根据您的具体需求,以下一项或多项:

  • Microsoft.TeamFoundation.VersionControl.Client
  • Microsoft.TeamFoundation.WorkItemTracking.Client
  • Microsoft.TeamFoundation.Build.Client
  • Microsoft.TeamFoundation.TestManagement.Client

A good starting point: 一个很好的起点:

  1. http://msdn.microsoft.com/en-us/library/ms252473.aspx#ObMod http://msdn.microsoft.com/en-us/library/ms252473.aspx#ObMod
  2. http://msdn.microsoft.com/en-us/library/ff732845.aspx http://msdn.microsoft.com/en-us/library/ff732845.aspx

All are in .NET 所有都在.NET中

I did not even know there was a Java API... 我甚至不知道有一个Java API ...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用TFS 2010 API订阅WorkItem事件 - Using the TFS 2010 API to subscribe to WorkItem Events 使用TFS 2010 API订阅工作区事件 - Using the TFS 2010 API to subscribe to Workspace Events 是否可以使用TFS 2015 API来查询来自TFS 2010的QueryHistory变更集? - Is it possible to use TFS 2015 api to QueryHistory changesets from TFS 2010? 如何确定是否在TFS2010 API中对构建进行了排队但未启动? - How to determine if a build is queued but not started in the TFS2010 API? TFS 2010 API:无法从ProjectCollection Server获取IBuildServer - TFS 2010 API: Unable to Get IBuildServer from ProjectCollection Server TFS 2010 API - 在workspace.Merge()状态为NoActionNeeded之后 - TFS 2010 API - After workspace.Merge() status is NoActionNeeded VS中的强制文档(2010) - Force Documentation in VS(2010) TFS 2010 API:队列同步构建并获取每个排队构建的状态:“在代理上运行(等待构建代理)” - TFS 2010 API: Queue builds synchronously and get the state of each queued build: “Run On Agent (waiting for build agent)” TFS 2010 API - 迭代QueryHistory中返回的更改集列表太慢了 - TFS 2010 API - Iterating through list of changesets returned in QueryHistory is way too slow 以编程方式签出 TFS 2010 中的文件 - Programatically checkout a file in TFS 2010
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM