Is there a way to run a generic command request by name through the TFS 2013 client API
I am working on a C # script that will do some work based on the results of a common command request. I do not want to support the request in the TFS user interface, as well as in my script; I would rather just run a registered request that my team uses, but then just play around with the results. When I write a “registered request”, I simply refer to the request that I wrote in the TFS user interface and saved as a general request.
In other words: I would like to use the TFS interface to create a request, save the file in the list of “general requests”, call it “foo”, then access foo from the client API in my script.
I see that there is the GetQueryDefinition(GUID) method of the WorkItemStore , but where can I get the GUID for a joint command request?
source share