-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
53 lines (52 loc) · 1.45 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
{
"manifestVersion": 1,
"id": "AzureDevOpsExtensions",
"publisher": "PUBLISHER",
"version": "0.0.1",
"name": "Azure DevoOps Extensions",
"description": "Conjunto de extensões personalizadas",
"public": false,
"icons": {
"default": "extension-logo.jpg"
},
"categories": ["Azure Boards"],
"content": {
"details": {
"path": "overview.md"
}
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "Widget",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog"
],
"properties": {
"name": "Widget",
"description": "Widget personalizado",
"catalogIconUrl": "widget-logo.jpg",
"previewImageUrl": "widget-logo.jpg",
"uri": "widget.html",
"supportedSizes": [
{
"rowSpan": 1,
"columnSpan": 2
}
],
"supportedScopes": [
"project_team"
]
}
}
],
"files": [
{ "path": "src", "addressable": true, "packagePath": "/" },
{ "path": "node_modules/vss-web-extension-sdk/lib", "addressable": true, "packagePath": "/lib" }
]
}