-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
89 lines (87 loc) · 2.03 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
{
"manifestVersion": 1,
"id": "Deployment-WorkFlow",
"version": "0.1.8",
"name": "RM deployment status - summary",
"description": "RM summary section extension",
"publisher": "anumitashenoy",
"public": false,
"links": {
"learn": {
"uri": "https://github.com/Microsoft/vso-extension-samples"
}
},
"icons": {
"default": "images/export-import.jpg"
},
"content": {
"details": {
"path": "overview.md"
}
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "rm-summary-section-sample",
"type": "ms.vss-releaseManagement-web.release-summary-section",
"targets": [ "ms.vss-releaseManagement-web.release-details-summary-tab" ],
"properties": {
"name": "Deployment Status",
"uri": "index.html",
"order": "99"
}
},
{
"id": "rm-tab-sample",
"type": "ms.vss-releaseManagement-web.release-summary-tab",
"targets": [ "ms.vss-releaseManagement-web.release-details-view" ],
"properties": {
"name": "Deployment Status",
"uri": "index.html",
"order": "99"
}
}
],
"screenshots": [
{
"path": "images/Details.png"
},
{
"path": "images/Changeworkflow.png"
},
{
"path": "images/info.png"
}
],
"files": [
{
"path": "index.html",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "bower_components/vss-web-extension-sdk/lib/VSS.SDK.min.js",
"addressable": true
},
{
"path": "bower_components/vss-web-extension-sdk/lib/VSS.SDK.js",
"addressable": true
},
{
"path": "images/Details.png", "addressable": true
},
{
"path": "images/Changeworkflow.png", "addressable": true
},
{
"path": "images/info.png", "addressable": true
}
]
}