Tagged Questions
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
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
251 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
352 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
115 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
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 ...
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
219 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
2answers
263 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
142 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
2answers
248 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
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
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
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
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 ...
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
136 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
1answer
57 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
65 views
Use standard TFS / VS2010 Test Step “Manage/Add Attachment” Dialog
We are currently starting to customize around TFS2010, more precisely its testing functionality, and I was wondering how I could use its standard functionality and dialog to attach files to test steps ...
0
votes
1answer
118 views
Richtext in TFS2010 Testcase Teststeps' texts?
I am currently evaluating possible solutions to limitations in Microsoft's Test Manager 2010 TestStep Editor control and I was wondering whether anyone knows if and if so, how you can write richtext ...
0
votes
1answer
62 views
workspace.PendAdd() exact syntax?
I am unable to add a new file using tfs sdk:
int a = workspace.PendAdd(path,recursive );
What is this argument "Path"? path of file where to add or from where to add?
or before using this method ...
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
2answers
676 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
2answers
529 views
Adding items to a global list in TFS via the SDK
I wish to add or list items from a global list in TFS 2010 via the TFS SDK.
I have discovered the following methods:
XmlDocument WorkItemStore.ExportGlobalLists()
void ...
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 ...