I’m building an Azure DevOps Server 2022 extension that adds a custom menu item to the work item toolbar (i.e., the top menu inside the work item form).
I'm using the following extension target:
"targets": [
"ms.vss-work-web.work-item-toolbar-menu"
]
Goal
I want this menu item to be visible only for specific work item types such as Bug or Task, and not shown for other types like Epic, Feature, etc.
Question
Is it possible to conditionally show a menu item only for certain work item types in Azure DevOps Server 2022?