Reputation: 999
I'm trying to write a plugin for TFS 2015 (its important). I read a couple of manuals. the examples all turns out simply, but it is more difficult with a real plugin. my problem: i want to add 2 action buttons with my functionality, like this: https://gyazo.com/344001e344826792be76d5faeb64c8fb
but in https://www.visualstudio.com/en-us/docs/integrate/extensions/develop/add-workitem-extension#addmenuaction I could not find a solution of my problem.
how can i add 2 action buttons to my tfs in right place?
Upvotes: 1
Views: 60
Reputation: 51183
To add the 1st button, it's not support for now. You cannot create a hub at this level (outside of a project). The highest you can go is a hub group. As mentioned above, here is a list of all the currently supported extension points.
To add the 2nd button, this is not belongs extensions.You just need to customize the work item form.
The following illustration highlights the most common elements on work item forms. You can customize all of them except the title area and form controls.
More details please refer this tutorial: Customize the work item form
Upvotes: 1