Tagged Questions

5
votes
2answers
2k views

How to create a test run and result using the Team Foundation Server API?

I have found several samples about retrieving test results using the TFS API, but no documentation on creating results programmatically. My aim is to create a lightweight alternative to using ...
5
votes
2answers
1k views

Attempting to retrieve files from TFS workspace stalls application

So I am attempting to retrieve the files from a workspace in TFS. Unfortunately, every attempt that I have made to do this results in a stalled application. As of right now, this is the code: ...
3
votes
2answers
277 views

How do I programatically lookup code churn info for individual files within a changeset in TFS 2010?

I need to be able to programatically lookup code churn info (lines added, changed, deleted) for individual files within a changeset in TFS 2010. The program that I need to do this is in is a desktop ...
3
votes
1answer
2k views

TfsConfigurationServer.GetService<VersionControlServer>() always returns null

I'm trying to connect to TFS 2010 using TFS SDK, but can't get VersionControlServer service. var servers = RegisteredTfsConnections.GetConfigurationServers(); // ok then var tfs = new ...
3
votes
4answers
765 views

listing all contents of a folder in tfs

Given a particular path of folder in tfs, I need to recursively find all files and folders within the folder for a given changeset. In other words, i need to get the transitive closure of a path in ...
3
votes
2answers
2k views

Get all folders from TFS using TFS SDK

I am creating a TFS tool that will get "changeset information" from the TFS server. Now, I want to provide a "TFS Browser" so that the user can browse what "branch/folder" he wants to fetch ...
2
votes
1answer
382 views

How to retrieve list of child tasks from a Product Backlog Item in TFS API?

Given a certain product backlog id, I want to programmatically retrieve a list of tasks that are child to the PBI. I am aware that there's not one field in the task that says "Parent PBI Id". I have ...
2
votes
1answer
444 views

Programmatically access to TFS 2010 from outside the domain

I'm trying to access my TFS server programmatically from outside the domain where the server is installed. A basic test program would look like this : class Program { static void ...
2
votes
2answers
368 views

WorkItemCollection items too slow to access

Using TFS SDK, I am querying workitems using WorkItemStore.Query: WorkItemCollection workItems = WorkItemStore.Query("SELECT ID from workitems"); foreach(WorkItem wi in workItems) { string Id = ...
1
vote
2answers
48 views

Get the latest check in number (latest changeset id)

Is there a way to get programmatically latest changeset version in general. It's fairly easy to get changeset id for certain file : var tfs = ...
1
vote
1answer
243 views

How do I get a list of connected TFS projects in Visual Studio?

Using the Visual Studio 2010 and TFS 2010 SDK, I want to get the list of projects in the current collection that the user has selected. How do I do this? I can get the collection uri with this ...
1
vote
2answers
2k views

TFS 2010 API - Iterating through list of changesets returned in QueryHistory is way too slow

Long story short. After profiling, this command takes 0,1% of the processing var ChangesetList = TFSConnection.GetInstance().GetVersionControl().QueryHistory (Path, VersionSpec.Latest,0, ...
1
vote
2answers
336 views

Error executing TFS command

I have an exception when calling Workspace.Merge. I am getting access to VersionControlExt from VisualStudio. The code below gets access to Visual Studio TFS explorer window object (that is active in ...
1
vote
1answer
542 views

How do you connect to a TFS server in C# using specific credentials?

I am attempting to write a c# application that connects to TFS and retrieves work item information. Unfortunately, it seems like all examples of using the TFS SDK are using the default credentials ...
1
vote
0answers
861 views

Get latest changeset version number of a file from TFS programatically

Using TFS SDK, how can one get the latest version number of a certain file? Right now I'm doing this: VersionControlServer vcs = ...
0
votes
2answers
116 views

TFS : Get Latest Version from Windows Service

I'm trying to get the latest version of TFS using Team Foundation Server API. This action I'm trying from a Windows Service with C#, I get error: Workspace [] wss = vcs.QueryWorkspaces (null, ...
0
votes
2answers
72 views

Team Foundation Server List

I need to get "Team Foundation Server List" programmatically with C#. Is this possible? or uri must be specified as follows: TfsTeamProjectCollection tfs = new TfsTeamProjectCollection (new Uri ...
0
votes
0answers
82 views

How to know if a user choose a portal Sharepoint or not in team project wizard for tfs 2010

Sorry for my english but i need your help. i develop on TFS 2010 to extend team project wizard. I have an error when a user don't choose to configure a sharepoint portal for the team project or when ...
0
votes
1answer
436 views

Limiting results from TFS WorkItemStore.Query

Is there a way to limit the amount of workitems that gets returned from WorkItemStore.Query? workItemStore.Query("Select Title from Issue where (State = 'Active') order by Title") <-- returns ...
0
votes
2answers
461 views

Use VersionControlExt.Explorer outside Visual Studio

I'm developing a TFS tool to assist the developers in our company. This said tool needs to be able to "browse" the TFS server like in the Source Control Explorer. I believe that by using ...
0
votes
4answers
2k views

How do you get the latest version of source code using the Team Foundation Server SDK?

I'm attempting to pull the latest version of source code out of TFS programmatically using the SDK, and what I've done somehow does not work: string workspaceName = "MyWorkspace"; string projectPath ...
0
votes
2answers
650 views

Get .sln file from Team Foundation Server SDK

I'm writing a check-in policy for Team Foundation Server, and would like to know if there's any way to get the path to the project solution's .sln file with the TFS SDK. Seems like there should be a ...