Tagged Questions

Team Foundation Server is a Microsoft product, tightly integrated with its Visual Studio product and aimed at helping teams of .net developers work togther, with an integrated Wiki, Work item tracker, source control and build system.

learn more… | top users | synonyms

6
votes
1answer
862 views

How to programmatically get information about branches in TFS?

I need to programmatically find out information about branches in TFS. For instance the main thing i am interested is given root folder $/MyProject/Project1 I neeed to find out what other folders have ...
5
votes
2answers
1k 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: ...
4
votes
1answer
180 views

Get the history “text” of a past work item edit

Say I make a work item in TFS. Then I make a change and update the text in the History tab (then save). Using the TFS API, how can I get that text? I would have thought it would have been in the ...
3
votes
2answers
236 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
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
48 views

Set Effort estimates through TFS Work Item SDK

I want to create a new work item in TFS using the SDK, and I'd like to set the item's effort estimates. My code at the moment looks like this var coll = ...
2
votes
1answer
82 views

Show item history windows with TFS SDK

I'm writing an app that integrates with TFS via the official SDKs to automate and support various common actions. Although most of it is automation and the TFS API exposes pretty much everything I ...
2
votes
1answer
242 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
345 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
1answer
114 views

TFS discard not working on rollback changesets

We have a situation where work had been done in the trunk of our system but was then pulled for our next release. We created a branch with the changes still in the trunk and then rolled back the ...
2
votes
1answer
152 views

Silent update of TFS WorkItem

I have written a tool for mgmt that updates Completed field of TFS WorkItem on a periodic basis (some minutes). All works fine but new revision is appended every item update, inflating item history ...
2
votes
1answer
168 views

With the TFS SDK, can I register custom metadata in the server?

I have a custom, windows service that a visual studio plugin connects to and Visual studio connects to a Team System server. Is there anyway for my custom service to somehow register it's uri in ...
2
votes
1answer
1k 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 ...
2
votes
2answers
341 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 = ...
2
votes
4answers
706 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 ...
2
votes
1answer
162 views

In the context of the TFS version control SDK (Microsoft.TeamFoundation.VersionControl), what exactly is deletionID?

In the context of the TFS version control SDK (Microsoft.TeamFoundation.VersionControl), what exactly is deletionID? It is a property of Microsoft.TeamFoundation.VersionControl.Client.Item. It is ...
2
votes
1answer
396 views

How to build till a particular changeset number TFS API 2010?

Suppose I have a list of changesets 1 to 10. Is it possible to specify that it build till changeset no. 5, instead of building just for a particular changeset or all the changesets 1-10? I know It's ...
1
vote
1answer
33 views

Querying failed unit tests from TFS-SDK?

Given a TFS build detail (IBuildDetail) with .Status of PartialSuccess, and .TestStatus of Failed how might I go about retrieving the list of tests (MSTest) that have failed on that build? I have a ...
1
vote
2answers
70 views

How do I list old TFS users that no longer belong to any security groups?

There are lots of examples around that show how to get a list of current TFS users, but how do I get a list of old users that have commit changes in the past but no longer belong to any security ...
1
vote
1answer
53 views

Detecting the Team Project Collection in Team Foundation Server 2010

I'm using the Team Foundation Server API to try to connect to a remote server. From within my application, I try to connect to a URL of the form https://some-tfs-location.example.com/tfs but when ...
1
vote
1answer
86 views

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"); ...
1
vote
2answers
217 views

Custom TFS queries via the API

I have a working utility that queries the TFS workitem store via the TFS API. I can retrieve various pieces of data in this way including listing the Stored query names. However, I can't find the ...
1
vote
1answer
80 views

TFS work Item editing conflict (TFS error 237079)

It seems that TFS doesn't handle concurrent work item editing very well. We ran into two problematic scenarios: Scenario A: You start editing a work item. While you're editing, someone else edits ...
1
vote
2answers
261 views

How to lock a branch using TFS API in TFS 2010?

Is it possible to lock a branch using TFS API in TFS 2010?
1
vote
1answer
140 views

How do I find how much space TFS is using

I'm tring to find out how much space TFS is using. Is there a simple check free space command on TFS? Also is there a way to poll TFS for the amount of hard drive space left and see when large ...
1
vote
3answers
281 views

How to map a TFS item url to something viewable

We are programmatically generating deployment emails, based on the history of changesets and associated workitems since the last deployed build. They look a bit like the build summary info inside ...
1
vote
1answer
142 views

How can I get only the shelvesets pertaining to a specified branch/folder?

I'm trying to list all shelvesets in a branch regardless of owner. I see that I can use QueryShelvesets(null, null) to get all shelvesets from version control, but I don't see how to specify the ...
1
vote
1answer
225 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
245 views

Getting the BuildAgent information from a Build

I have a IBuildDetail variable with the build information I need. Okay, but when I check the property BuildAgent it's showing this: build.BuildAgent' threw an exception of type ...
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
1answer
464 views

How to update a custom TFS field programmatically

We have a custom build process (not using MS Build) and during that process I am adding a "fake" build to the global builds list. The reason I am doing that is so that you can select the build for a ...
1
vote
1answer
613 views

Is it possible to programmatically modify TFS 2008/2010 work item type?

Is there a way to programmatically modify a work item type on a TFS server? The background on this is that we use a custom field similar to VSTS.Build.FoundIn and would like to have it populated ...
1
vote
2answers
320 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
192 views

Using TFS2010 client in a 64-bit only IIS process

I'm finding conflicting information regarding the TFS 2010 Client assemblies. I wish to connect to a TFS 2010 server from an ASP.Net application running on IIS 7.5 in a 64-bit only application pool. ...
1
vote
1answer
496 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
2answers
731 views

Workspace.PendEdit not checking out files

I'm using the TFS 2010 SDK to programmatically check in edits to files into TFS 2010. The documentation on the TFS 2010 SDK is sparse at best. When I call the method workspace.pendedit() passing in an ...
1
vote
2answers
1k views

How to get List of projects from TFS?

How do I get list of projects from TFS server using webservice? Is documentation available for the TFS Webservices?
1
vote
0answers
837 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 = ...
1
vote
1answer
200 views

How to determine programmatically whether team project has sharepoint portal configured?

In VS.Net 2010 Beta 2: when a team project gets created the wizard offers a choice of whether or not to configure the project's Sharepoint portal. How can I determine programmatically whether a team ...
1
vote
1answer
578 views

add users to team foundation server 2008 using TFS SDK

How do I add users to the contributors group of one of my TFS 2008 projects using TFS SDK?
1
vote
2answers
212 views

Is it meaningful to store workitem URIs

I'm considering storing the URI for a workitem from our TFS environment in our helpdesk system, however looking at the URIs TFS gives us (vstfs:///WorkItemTracking/WorkItem/327), there doesn't appear ...
0
votes
1answer
30 views

Supplying invalid TFS credentials for test purposes

I'm having a scenario where a test is supplying invalid TFS credentials in order to fail authentication. However, TfsTeamProjectCollection is picking up my own credentials and always succeeds the call ...
0
votes
2answers
58 views

“Calculating” code ownership index using TFS SDK 2010

I need your help on an idea that came to my mind recently. Speaking in TFS terms, I am trying to come up with a formula that can determine the ownership index for some source-controlled file (i.e. ...
0
votes
0answers
21 views

Custom Icon Overlays in TFS 2010 Source Control Explorer

I have been trying to add an icon overlay in Source Control Explorer in TFS 2010. I encountered a similar post titled Icon Overlays in Source Control Explorer on Stack Over flow. Is it now possible ...
0
votes
2answers
129 views

How to get all unmerged changesets for a branch using TFS 2010 SDK?

Currently I have 2 branches - Development and Release. Is it possible to obtain all unmerged changesets from Development to Release? Currently we use the default Merge Wizzard. However it has one big ...
0
votes
2answers
100 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
66 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
1answer
56 views

WorkItem.Links.Contains() what does it do?

If I do: RelatedLink newLink = new RelatedLink(linkTypeEnd, id); if (workItem.Links.Contains(newLink)) return; workItem.Links.Add(newLink); It still crashes on the Add method with a ...
0
votes
0answers
57 views

How do I programmatically get the previous version of an item in a TFS changeset?

Using the TFS APIs it is trivial to loop through changes in a changeset and then get the files using the ServerItem and ChangesetId. But suppose I want to diff the modified files, how can I get the ...

1 2