I'm trying create TFS 2015 on-prem VSS Extension. I want add button to query result button panel. I read msdn, get example from GITHub () and try add extension to my TFS.
In this example many of buttons adding to several places (Work Item button panel, Context Menu etc), but button to query result dosen't work.
MSDN (https://www.visualstudio.com/en-us/docs/integrate/extensions/reference/targets/overview#work) says, that target for query result button panel is ms.vss-work-web.work-item-query-results-toolbar-menu. So that vss-extension.json
{
"id": "showProperties_24",
"type": "ms.vss-web.action",
"description": "Shows the target properties for work item query results toolbar menu.",
"targets": [
"ms.vss-work-web.work-item-query-results-toolbar-menu"
],
"properties": {
"text": "Custom query results toolbar menu",
"title": "ms.vss-work-web.work-item-query-results-toolbar-menu (Custom query results toolbar action)",
"icon": "images/show-properties.png",
"group": "actions",
"uri": "main.html",
"registeredObjectId": "showProperties"
}
},
But it dosen't work
Can someone explain what is wrong



