Tagged Questions
The tfs-api tag has no wiki summary.
4
votes
1answer
181 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 ...
2
votes
1answer
38 views
Is it possible to access the TFS API using C++ (Native)
Is there any way of accessing the TFS API using Native C++? I can access it using C# easily enough but I was wondering if anyone has tried accessing it via native C++.
My other option is to use ...
2
votes
1answer
67 views
TFS 2010 API, determine which build server a build is running on.
Apologies, this is almost certainly a duplicate of this question but as that one hasn't been answered I'm going to try again.
I'm trying to build a tool which will allow me to see all of the builds ...
2
votes
1answer
54 views
TFS API BranchObjectCreated Event does not fire
I have some code to automate the creation of build definitions in TFS.
Now I'd like to have this code invoked whenever a branch is created.
Looking at the API, I see that there is a ...
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
173 views
How to access workitem link and attachment history
I am working with TFS API and trying to create the history tab exactly same as what we see in TFS explorer.
So far I am able to figure our the changes to Fields via WorkItem > Revisions > Fields
I ...
2
votes
2answers
412 views
Specifying a list of items for the parameters with WorkItemStore.Query in TFS
I've got the following WIQL query for a TFS project:
string query = "SELECT * FROM Issue WHERE [System.TeamProject] = @Project "+
"AND [Assigned To] IN (@AssignedTo)";
...
2
votes
1answer
684 views
Loading symbols for remote debugging
I am trying to debug a plug-in for TFS 2010 using the code found here. That example recommends using TFS installed locally to debug. I wanted to try it with a dev TFS 2010 Server I have setup. So I ...
1
vote
1answer
97 views
C# TFS API "There is no working folder C:\TFS' in VS2008 installed system
I want to find out the files recently checked in using C# and TFS API from TFS2010. It works fine where MS Visual studio 2010 is installed. this is developed using VS2010, .Net 3.5.
When I use this ...
1
vote
1answer
69 views
Listing All Changesets and Releated Work Items Belongs to Specific Project Between Specified Dates
I am trying to write a small Relase Notes program with C#. I need to fetch all changesets and related work items belongs to specified project between specified dates.
I tried to use QueryHistory ...
1
vote
1answer
117 views
Get Latest using TFS API
I am trying to use the TFS API to retrieve the latest code from the server within a workspace.
I found this question:
How do you get the latest version of source code using the Team Foundation Server ...
1
vote
2answers
198 views
Get history of file changes from TFS to implement custom “blame”-behaviour of exceptions
I'm trying to make some way of figuring out who to "blame" when an exception is thrown in our application (at work). It could be me causing it of course but I can accept that :). But to do this I need ...
1
vote
2answers
246 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
1answer
310 views
TFS API InformationNodeConverters.GetAssociatedChangesets() not working as expected
I think I may have misunderstood the purpose of this function, but here's my problem.
When I look in the build summary, I see that a build ran successfully, and it tells me:
[person] triggered ...
1
vote
1answer
678 views
Using the TFS 2010 API to subscribe to Workspace Events
I'm trying to write some code that monitors the TFS workspace(s) on my local workstation but at the moment I'm having problems getting the events to fire.
For example if I map a new folder in my ...
1
vote
1answer
421 views
Updating a TFS Work Item using server side methods
I am trying use the new server side plug-in feature for TFS 2010. (I got the basics of how to get started doing this from here and here)
It works great and is many times faster than the normal web ...
1
vote
2answers
911 views
Passthrough (impersonation) authentication with ASP.NET and TFS api
I'm trying to enable passthrough or impersonation authentication inside an ASP.NET website that uses the TFS2010 API.
I've got this working correctly with Cassini, however with IIS 7.5 (Windows 7) ...
1
vote
4answers
163 views
Can I distribute Microsoft.TeamFoundation.WorkItemTracking.Client
I made an application (called WI Assistant) that is a TFS Application.
I got a bug report with this error: Could not load file or assembly Microsoft.TeamFoundation.WorkItemTracking.Client.
I assume ...
0
votes
0answers
26 views
TFS 2010 API: Get old name/location of renamed/moved item
I'm writing an application that pulls changesets from TFS and exports a csv file that describes the latest changes for use in a script to push those changes into ClearCase. The "latest" doesn't ...
0
votes
1answer
1k views
TFS API Changeset branch
I’ve trying to extract the branch history from a changeset, following this article. However, I’ve noticed that a Changeset has a property called IsBranch, which is not the way that the article ...
0
votes
2answers
455 views
Adding Generic Test Cases to TFS in C#
So I'm trying to find a way in which I can insert new generic test cases into TFS through C#. These are the same ones that you can create in Visual Studio so I was hoping there was someway to do this ...
0
votes
1answer
426 views
TFS API - is there a way to get a list of the transitions for a workitem type?
I am trying to get from State "A" to State "X".
There are transitions in place that prevent me from just going to X.
I can export the WorkItemType as XML and work on that, but before I do that, I ...