Tagged Questions

6
votes
1answer
872 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

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
184 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
237 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 ...
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
83 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
154 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
4answers
716 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
398 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
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
54 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
88 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
218 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
3answers
284 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
467 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
617 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
321 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
193 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
498 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
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
1answer
579 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
60 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
2answers
134 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
1answer
143 views

Modifying permissions on files/items in version control using TFS API

Using the TFS API, I need to change permissions on a specified file/item in version control. I need to edit permissions for a particular user or for all users. For instance, my app will prevent ...
0
votes
1answer
200 views

TFS SDK - Getting the network credential prompt

I am trying to get the network prompt so that user can provide the credentials. I saw this and It does not help. Could somebody provide a more complete example? The goal is is to get this from a Word ...
0
votes
2answers
261 views

Custom Check in policy in TFS?

We have some xml files in the our project and whenever we check-in these xml files into TFS, We have make sure before checking-in that we have added those xml files to proprietary application. Now ...
0
votes
0answers
78 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
396 views

TFS: How to compare changesets between two branches

How can I find changesets in Branch A that were not merged to branch B programmatically. This what Merge Window does in TFS client GUI but I need to programmatically get the list of changesets. Say I ...
0
votes
2answers
675 views

Extract, zip and publish TFS source-controlled items to FTP server

I want to publish nightly builds + source code of a specific project on a tfs 2010 server (local network, inside the firewall) to a (local network, in the dmz) ftp server. Build Get latest version ...
0
votes
2answers
123 views

In TFS 2010 is there any equivalent to reporter (or a way to change the “Created By” field)

When adding a work item to TFS 2010 via the SDK, the incidents are created using the same identity that was used to authenticate to the TFS server. In other applications providing defect tracker/work ...
0
votes
1answer
405 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
1answer
691 views

custom control for TFS work item type

I will explain my question with an example. Lets consider TFS "Bug" work item type. In the bug work item type there is a "Developer" and "Tester" dropdown. Using the inbuilt rule types we can only ...
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
1answer
311 views

Is there a way to create a new team project using the TFS SDK?

I'm just getting started with the Team Foundation Server SDK and I'm wondering if there is a way to create a new Team Project using the SDK. My goal in doing this is to create some automated tests ...