-
Notifications
You must be signed in to change notification settings - Fork 3
/
vss-extension.json
108 lines (107 loc) · 2.88 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"manifestVersion": 1,
"id": "board-form-control",
"version": "1.3.1",
"name": "Board Work Item Context Menu",
"description": "Change a work item's board column and row from the work item form or backlog.",
"publisher": "mike-branstein",
"icons": {
"default": "img/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"public": true,
"tags": [
"Work Item",
"Board",
"Lane"
],
"content": {
"details": {
"path": "overview.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/mikebranstein/vsts-extension-board-control"
},
"links": {
"learn": {
"uri": "https://github.com/mikebranstein/vsts-extension-board-control/blob/master/README.md"
},
"support": {
"uri": "https://github.com/mikebranstein/vsts-extension-board-control"
},
"repository": {
"uri": "https://github.com/mikebranstein/vsts-extension-board-control"
},
"issues": {
"uri": "https://github.com/mikebranstein/vsts-extension-board-control/issues"
}
},
"scopes": [
"vso.work_write"
],
"files": [
{
"path": "img",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "styles",
"addressable": true
},
{
"path": "board-form.html",
"addressable": true
},
{
"path": "workItem-toolbar-button.html",
"addressable": true
},
{
"path": "sdk/scripts/VSS.SDK.min.js",
"addressable": true
},
{
"path": "sdk/scripts/bluebird.min.js",
"addressable": true
}
],
"categories": [
"Plan and track"
],
"contributions": [
{
"id": "board-work-item-menu",
"type": "ms.vss-web.action",
"description": "Moves an item to a specified board column and row",
"targets": [
"ms.vss-work-web.work-item-context-menu"
],
"properties": {
"text": "Move on board...",
"title": "Updates the board column and row of the work item",
"toolbarText": "Move on board...",
"icon": "img/context-menu-icon.png",
"uri": "workItem-toolbar-button.html"
}
},
{
"id": "board-form",
"type": "ms.vss-web.control",
"description": "The content to be displayed in the dialog",
"targets": [],
"properties": {
"uri": "board-form.html"
}
}
]
}