-
Notifications
You must be signed in to change notification settings - Fork 4
/
vss-extension.json
80 lines (80 loc) · 1.86 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
{
"manifestVersion": 1,
"id": "vsts-extensions-myExtensions",
"version": "2.1.10",
"name": "Real Sprint burndown",
"description": "Creates a sprint burndown chart based on your sprint and supported states in workflow",
"publisher": "tomkamphuis",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "img/logo.png"
},
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "license-terms.md"
}
},
"contributions": [
{
"id": "RealSprintBurndown",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog",
"tomkamphuis.vsts-extensions-myExtensions.RealSprintBurndown.Configuration"
],
"properties": {
"name": "Real Sprint burndown",
"description": "Creates a sprint burndown chart based on your sprint and supported states in workflow",
"catalogIconUrl:": "img/logo.png",
"previewImageUrl": "img/preview.png",
"uri": "burndown.html",
"supportedSizes": [
{
"rowSpan": 2,
"columnSpan": 3
}
],
"supportedScopes": ["project_team"]
}
},
{
"id": "RealSprintBurndown.Configuration",
"type": "ms.vss-dashboards-web.widget-configuration",
"targets": [ "ms.vss-dashboards-web.widget-configuration" ],
"properties": {
"name": "RealSprintBurndown Configuration",
"description": "Configures RealSprintBurndown",
"uri": "configuration.html"
}
}
],
"files": [
{
"path": "burndown.html", "addressable": true
},
{
"path": "configuration.html", "addressable": true
},
{
"path": "sdk/scripts", "addressable": true
},
{
"path": "modules", "addressable": true
},
{
"path": "img", "addressable": true
}
],
"scopes":[
"vso.work",
"vso.project"
]
}