This repository was archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 285
This repository was archived by the owner on Jan 17, 2024. It is now read-only.
Missing Repository creation extension point #138
Copy link
Copy link
Open
Description
vsts-extension-samples/contributions-guide/vss-extension.json
Lines 68 to 177 in 4b9a202
| "id": "showProperties", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for source files", | |
| "targets": [ | |
| "ms.vss-code-web.source-item-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom source item action", | |
| "title": "ms.vss-code-web.source-item-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_2", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the source explorer grid", | |
| "targets": [ | |
| "ms.vss-code-web.source-grid-item-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom source grid item action", | |
| "title": "ms.vss-code-web.source-grid-item-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_3", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the source explorer tree", | |
| "targets": [ | |
| "ms.vss-code-web.source-tree-item-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom source tree item action", | |
| "title": "ms.vss-code-web.source-tree-item-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_4", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the commit/changeset files tree", | |
| "targets": [ | |
| "ms.vss-code-web.change-list-item-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom change explorer action", | |
| "title": "ms.vss-code-web.change-list-item-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_5", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the commit/changeset summary view file menu", | |
| "targets": [ | |
| "ms.vss-code-web.change-list-summary-item-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom change list summary item action", | |
| "title": "ms.vss-code-web.change-list-summary-item-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_6", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the git branches tree", | |
| "targets": [ | |
| "ms.vss-code-web.git-branches-tree-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom Git branch action", | |
| "title": "ms.vss-code-web.git-branches-tree-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, | |
| { | |
| "id": "showProperties_7", | |
| "type": "ms.vss-web.action", | |
| "description": "Shows the target properties for menu actions for the git branches view's diff menu", | |
| "targets": [ | |
| "ms.vss-code-web.git-branches-summary-grid-diff-menu" | |
| ], | |
| "properties": { | |
| "text": "Custom Git branch diff action", | |
| "title": "ms.vss-code-web.git-branches-summary-grid-diff-menu", | |
| "icon": "images/show-properties.png", | |
| "group": "actions", | |
| "uri": "main.html", | |
| "registeredObjectId": "showProperties" | |
| } | |
| }, |
Metadata
Metadata
Assignees
Labels
No labels