-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvss-extension.json
More file actions
85 lines (85 loc) · 2.04 KB
/
vss-extension.json
File metadata and controls
85 lines (85 loc) · 2.04 KB
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
{
"manifestVersion": 1,
"id": "attachments-group",
"version": "1.2.82",
"name": "Attachments Group",
"scopes": [ "vso.work", "vso.work_write" ],
"description": "Preview image attachments from the work item form",
"publisher": "ottostreifel",
"icons": {
"default": "img/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Work Item",
"Group",
"Productivity",
"File",
"Image",
"Attachment",
"Form"
],
"content": {
"details": {
"path": "details.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/ostreifel/Attachments-Group"
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"files": [
{
"path": "img",
"addressable": true
},
{
"path": "dist",
"addressable": true
},
{
"path": "attachmentGroup.html",
"addressable": true
},
{
"path": "imageGallery.html",
"addressable": true
}
],
"categories": [
"Plan and track"
],
"contributions": [
{
"id": "attachments-group",
"type": "ms.vss-work-web.work-item-form-group",
"description": "Show attachments associated with the current workitem",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Attachments",
"uri": "dist/attachmentGroup.html",
"height": 78
}
},
{
"id": "imageGallery",
"type": "ms.vss-web.control",
"description": "Image gallery",
"targets": [ ],
"properties": {
"uri": "dist/imageGallery.html",
"registeredObjectId": "dialogCallbacks"
}
}
]
}