3

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

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

Links to items I have looked at:

4

2 回答 2

4

如果您正在寻找 C# API(可能基于问题标签),则有Microsoft.TeamFoundation命名空间。我以前用过。

您需要在项目中包含以下程序集作为引用:

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

并根据您的具体需求提供以下一项或多项:

  • Microsoft.TeamFoundation.VersionControl.Client
  • Microsoft.TeamFoundation.WorkItemTracking.Client
  • Microsoft.TeamFoundation.Build.Client
  • Microsoft.TeamFoundation.TestManagement.Client
于 2012-11-21T15:51:53.717 回答
2

一个好的起点:

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

都在 .NET 中

我什至不知道有Java API...

于 2012-11-21T15:51:23.023 回答