-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
62 lines (61 loc) · 1.39 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
{
"manifestVersion": 1,
"id": "vsts-extensions-myExtensions",
"version": "1.0.69",
"name": "Sprint Retrospective",
"description": "Sprint Retrospective Extension",
"publisher": "petdun",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scopes": [
"vso.work_write"
],
"contributions": [
{
"id": "retrospective-hub",
"type": "ms.vss-web.hub",
"description": "Adds a hub to the Work hub group",
"targets": [
"ms.vss-work-web.work-hub-group"
],
"properties": {
"name": "Retrospective",
"order": 100,
"uri": "context.html"
}
}
],
"files": [
{
"path": "context.html",
"addressable": true
},
{
"path": "bundle.js",
"addressable": true
},
{
"path": "category.js",
"addressable": true
},
{
"path": "sdk/scripts",
"addressable": true
},
{
"path": "css",
"addressable": true
},
{
"path": "gridScript.js",
"addressable": true
},
{
"path": "dataStorage.js",
"addressable": true
}
]
}