forked from snuziale/vsts-extension-split-work
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
95 lines (95 loc) · 2.17 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
94
95
{
"manifestVersion": 1,
"id": "vsts-extension-split-work",
"version": "0.1.6",
"name": "Split!",
"scopes": [
"vso.work",
"vso.work_write"
],
"description": "Split a work item to track work that will continue into the next sprint.",
"publisher": "blueprint",
"public": true,
"icons": {
"default": "img/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Split",
"Agile",
"Sprint",
"Iteration",
"Scrum"
],
"content": {
"details": {
"path": "details.md"
}
},
"links": {
"support": {
"uri": "https://github.com/snuziale/vsts-extension-split-work"
},
"repository": {
"uri": "https://github.com/snuziale/vsts-extension-split-work"
},
"issues": {
"uri": "https://github.com/snuziale/vsts-extension-split-work/issues"
}
},
"branding": {
"color": "rgb(41,115,217)",
"theme": "light"
},
"files": [
{
"path": "img",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "index.html",
"addressable": true
},
{
"path": "css",
"addressable": true
},
{
"path": "dialog.html",
"addressable": true
}
],
"categories": [
"Azure Boards"
],
"contributions": [
{
"id": "vsts-extension-split-work-action",
"type": "ms.vss-web.action-provider",
"description": "",
"targets": [
"ms.vss-work-web.work-item-context-menu"
],
"properties": {
"group": "contributed",
"uri": "index.html"
}
},
{
"id": "vsts-extension-split-work-dialog",
"type": "ms.vss-web.control",
"targets": [],
"properties": {
"uri": "dialog.html"
}
}
]
}