tfs-workitem

Change TFS Work Item Type

只愿长相守 提交于 2019-12-08 14:39:56
问题 Is it possible to change the type of a TFS work item? For example, I have a Bug I would like to change to a Change Request. 回答1: Not easily. You could try and hack the database, but that's really not a good idea. Just like dancing barefoot in a room full of broken glass whilst juggling live grenades isn't a good idea. I'd suggest you create a new work item for the change request, link it to the bug and then set the bug state to obsolete/closed. 回答2: As noted you cannot directly change the

How to open a tfs work item inside Visual Studio 2010 inside a Extension?

纵饮孤独 提交于 2019-12-08 13:55:55
问题 I'm developing a VS 2010 Extension, and I would like to know if there is a way to open a Work Item in the Team Explorer Work Item Editor ? What code should I call to accomplish this? I'm clueless. 回答1: There is a extension,TEK Workitem, in Visual Studio Gallery, that allows to open workitems and queries in Visual Studio from a hyperlink. You find more details on the Gallery: TFS Extensions Kit. Workitem 回答2: I am not 100% sure what you are asking for because I don't know what the "Team

How to browse the work items more quickly?

北慕城南 提交于 2019-12-08 11:54:36
问题 I have to update the work-items of my team very often. But since my office is in a different country from the other team members, the browsing process is very inconvenient: every time I click a work-item, my Visual Studio (VS) tries to connect to the TFS server, costing me 1-2 seconds! I want VS to stop this behavior so that no connection is called while I am browsing the work-tem list. My question is: Can I do this? And how to do it if I can? 回答1: One option is to open the work item query in

How to get the WorkitemCollection from WorkItemStore using Query(Ids, QueryString) Method

瘦欲@ 提交于 2019-12-08 05:06:37
问题 I have stuck on one problem where I want to get the WorkItemCollection from the WorkItemStore . I know it can be possible by using Query() Method. But in my scenario Query method is not working as I am using method WorkItemStore.Query Method (Int32[], String). with the String argument as Select [System.Id],[System.State],[System.Title],[System.WorkItemType] from WORKITEMS where [System.WorkItemType] = 'Requirement' and [System.TeamProject] = 'Test_Baseline' But while executing this query It

Are TFS 2010 (a.k.a. Microsoft ALM 2010) web services exposed\documented

隐身守侯 提交于 2019-12-07 16:03:42
问题 I'm trying to find up to date info on commuicating with TFS 2010 (now also refered to Microsoft ALM 2010, I believe). This previous post 192579 from a Microsoft TFS team member states : The web services are not documented by Microsoft as it is not an officially supported route to talk to TFS. The officially supported route is to use their .NET API. But this was anwser was back from 2008, so I was wondering if this is still the case with 2010. There is a post 2010 post that talks about using

VSTS find workitems between two releases

笑着哭i 提交于 2019-12-07 12:06:57
问题 To compare the related work items between the current release and a previous release I can use the following: Is there possible to create a query to get the same work items between two releases? Or alternatively the VSTS Rest API. My reason for this is to create a list of Features > Stories > Tasks to fill the release notes. Using the above UI makes it pretty time intensive to find out the relation between the tasks and features. 回答1: Retrieve work items by calling https://{account}.vsrm

Work Item Description Height Not Increasing

ぐ巨炮叔叔 提交于 2019-12-07 09:20:07
问题 I am wanting to update some of our TFS work items as users have reported that in the Web Access portal there is a lot of wasted space. What I mean is when we load a work item, and there is as Description text box (type HtmlFieldControl, refname System.Description) then there appears to be a lot of white space between the control and the bottom of the page. When I open the work item in Visual Studio, then it appears fine and the Description fills up correctly. Altering the Height property just

Reference TFS work item from code comment

∥☆過路亽.° 提交于 2019-12-06 19:31:21
问题 In Visual Studio (2012+) I want a clickable reference from a code comment to a TFS work item. Is there a simple way to do this, and is this also possible from comments within the body of a function (not being the summary of the function)? So I want something like this: /// <summary> /// Example of a summary /// </summary> static void Main() { int dummy = 1; //Should be 1 according to @Task1234 <- should be a hyperlink } And rather not something like this: /// <summary> /// Example of a

How can I prohibit State change from Proposed to Active in TFS Requirement work-item based on value of another field?

£可爱£侵袭症+ 提交于 2019-12-06 03:25:28
I've added department approvals to the standard CMMI-Template Requirement work-item. I'd like to limit the System.State field such that it can only be changed from Proposed to Active when all department approvals are set to "Yes". I've tried the following change to Requirement.xml <FIELD name="State" refname="System.State" type="String" reportable="dimension"> <WHEN field="Approval.Marketing" value="No"> <READONLY /> </WHEN> <WHEN field="Approval.Quality" value="No"> <READONLY /> </WHEN> <WHEN field="Approval.RD" value="No"> <READONLY /> </WHEN> <WHEN field="Approval.System" value="No">

Are TFS 2010 (a.k.a. Microsoft ALM 2010) web services exposed\\documented

跟風遠走 提交于 2019-12-06 02:30:31
I'm trying to find up to date info on commuicating with TFS 2010 (now also refered to Microsoft ALM 2010, I believe). This previous post 192579 from a Microsoft TFS team member states : The web services are not documented by Microsoft as it is not an officially supported route to talk to TFS. The officially supported route is to use their .NET API. But this was anwser was back from 2008, so I was wondering if this is still the case with 2010. There is a post 2010 post that talks about using powershell and the tfs web services . To give some context, I basically need to sync some workitems