-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
165 lines (165 loc) · 5.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"manifestVersion": 1,
"id": "samples-build-results-enhancer",
"version": "0.2.13",
"name": "Build Results Enhancer",
"description": "A simple extension that demonstrates how to extend build summary page.",
"publisher": "fabrikam",
"public": false,
"icons": {
"default": "images/fabrikam-logo.png"
},
"tags": [
"Build"
],
"scopes": [
"vso.build_execute"
],
"categories": [
"Developer samples"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "buildDumpSection.html",
"addressable": true
},
{
"path": "infoTab.html",
"addressable": true
},
{
"path": "statusSection.html",
"addressable": true
},
{
"path": "builtInTaskContribution.html",
"addressable": true
},
{
"path": "taskContribution.html",
"addressable": true
},
{
"path": "src/Tasks",
"addressable": true,
"packagePath": "Tasks"
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"contributions": [
{
"id": "build-info-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to build results view",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Custom Tab",
"uri": "infoTab.html"
}
},
{
"id": "build-builtin-task-dependent-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to build results view and depends on Cmdline task",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Cmdline Tab",
"uri": "builtInTaskContribution.html",
"supportsTasks": ["D9BAFED4-0B18-4F58-968D-86655B4D2CE9"]
}
},
{
"id": "build-status-section",
"type": "ms.vss-build-web.build-results-section",
"description": "A section contributing to our own new tab and also to existing build 'summary' tab",
"targets": [
".build-info-tab",
"ms.vss-build-web.build-results-summary-tab"
],
"properties": {
"name": "Custom Section",
"uri": "statusSection.html",
"order": 20,
"height": 310
}
},
{
"id": "build-dump-section",
"type": "ms.vss-build-web.build-results-section",
"description": "A section contributing to our own new tab",
"targets": [
".build-info-tab"
],
"properties": {
"name": "Custom Section 2",
"uri": "buildDumpSection.html",
"order": 10,
"height": 500
}
},
{
"id": "MyPlainTask1",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/MyPlainTask1"
}
},
{
"id": "build-contribution-task-dependent-section",
"type": "ms.vss-build-web.build-results-section",
"description": "A section depending on myplaintask contributing to our own new tab and also to existing build 'summary' tab",
"targets": [
".build-info-tab",
"ms.vss-build-web.build-results-summary-tab"
],
"properties": {
"name": "MyPlainTaskSection",
"uri": "taskContribution.html",
"order": 20,
"height": 30,
"supportsTasks": ["7c939663-33ca-4cb6-9b8c-6e164d446eea"]
}
},
{
"id": "build-builtin-task-dependent-section",
"type": "ms.vss-build-web.build-results-section",
"description": "A section depending on cmdline contributing to our own new tab and also to existing build 'summary' tab",
"targets": [
".build-info-tab",
"ms.vss-build-web.build-results-summary-tab"
],
"properties": {
"name": "CmdLineTaskSection",
"uri": "builtInTaskContribution.html",
"order": 20,
"height": 30,
"supportsTasks": ["D9BAFED4-0B18-4F58-968D-86655B4D2CE9"]
}
}
]
}