-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
93 lines (93 loc) · 2.06 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
{
"manifestVersion": 1,
"id": "Lisbon",
"publisher": "CSE",
"version": "1.0.0",
"name": "Lisbon DevOps Extension",
"description": "Lisbon DevOps extension...",
"public": false,
"scopes": ["vso.work", "vso.project"],
"categories": ["Azure Boards"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "./logo.png"
},
"contributions": [
{
"id": "SimpleWidget",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog"
],
"properties": {
"name": "SimpleWidget",
"description": "Lisbon DevOps - Simple Widget",
"uri": "./simple-widget.html",
"catalogIconUrl": "./logo.png",
"previewImageUrl": "./logo.png",
"supportedSizes": [
{
"rowSpan": 1,
"columnSpan": 2
}
],
"supportedScopes": ["project_team"]
}
},
{
"id": "ComplexWidget",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog"
],
"properties": {
"name": "ComplexWidget",
"description": "Lisbon DevOps - Complex Widget",
"uri": "./complex-widget.html",
"catalogIconUrl": "./logo.png",
"previewImageUrl": "./logo.png",
"supportedSizes": [
{
"rowSpan": 1,
"columnSpan": 2
}
],
"supportedScopes": ["project_team"]
}
}
],
"files": [
{
"path": "bundle.css",
"addressable": true
},
{
"path": "complex-widget.html",
"addressable": true
},
{
"path": "complex.bundle.js",
"addressable": true
},
{
"path": "logo.png",
"addressable": true
},
{
"path": "simple-widget.html",
"addressable": true
},
{
"path": "simple.bundle.js",
"addressable": true
},
{
"path": "VSS.SDK.min.js",
"addressable": true
}
]
}