-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazure-devops-extension.json
66 lines (66 loc) · 1.47 KB
/
azure-devops-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
{
"manifestVersion": 1,
"id": "vsts-extension-split-work",
"version": "0.1.20",
"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": "dist/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/microsoft/azure-boards-split"
},
"repository": {
"uri": "https://github.com/microsoft/azure-boards-split"
},
"issues": {
"uri": "https://github.com/microsoft/azure-boards-split/issues"
}
},
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "img",
"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": "dist/index.html"
}
},
{
"id": "vsts-extension-split-work-dialog",
"type": "ms.vss-web.control",
"targets": [],
"properties": {
"uri": "dist/dialog.html"
}
}
]
}