forked from rishavsharan/azure-devops-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
69 lines (69 loc) · 1.94 KB
/
vss-extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"manifestVersion": 1,
"id": "pagangil-result-details",
"publisher": "pagangil",
"version": "1.0.19",
"name": "Result Details",
"description": "An extension which shows the details of the selected test case result",
"public": false,
"categories": ["Azure Pipelines"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "my-pivot-item",
"type": "ms.vss-web.tab",
"targets": [
"ms.vss-test-web.test-result-details-tab-items"
],
"description": "extension to show test result id",
"properties": {
"name": "Result Details",
"uri": "my-pivot.html",
"order": 107
}
},
{
"id": "my-result-toolbar-menu-item",
"type": "ms.vss-web.action",
"targets": [
"ms.vss-test-web.test-results-actions-menu"
],
"description": "extension to show menu item in results toolbar",
"properties": {
"text": "Action2",
"title": "ms.vss-test-web.test-results-actions-menu",
"icon": "images/show-properties.png",
"group": "actions",
"uri": "my-menu-action.html",
"registeredObjectId": "showProperties"
}
}
],
"files": [
{
"path": "my-pivot.html",
"addressable": true
},
{
"path": "my-menu-action.html",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "images",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
]
}