-
Notifications
You must be signed in to change notification settings - Fork 28
/
azure-devops-extension.json
80 lines (80 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"manifestVersion": 1.0,
"id": "cascading-picklists-extension",
"publisher": "ms-devlabs",
"version": "0.1.16",
"name": "Cascading Lists",
"description": "Extension allows to define cascading behavior for picklists in work item form.",
"categories": [
"Azure Boards"
],
"tags": [
"Cascading Picklists"
],
"icons": {
"default": "images/icon-default.png",
"large": "images/icon-large.png"
},
"content": {
"details": {
"path": "marketplace/details.md"
},
"license": {
"path": "marketplace/license.md"
}
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/azure-devops-extension-cascading-picklist"
},
"scopes": [
"vso.work",
"vso.work_write"
],
"contributions": [
{
"id": "cascading-lists-wit-observer",
"type": "ms.vss-work-web.work-item-notifications",
"description": "Observer modifies behavior of a work item form to support cascading picklists.",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Cascading Lists Observer",
"uri": "/dist/observer.html"
}
},
{
"id": "cascading-lists-config-hub",
"type": "ms.vss-web.hub",
"description": "Configuration hub for a cascading lists",
"targets": [
"ms.vss-web.project-admin-hub-group"
],
"properties": {
"name": "Cascading Lists",
"order": 1,
"uri": "/dist/confighub.html"
}
}
],
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "marketplace",
"addressable": true
},
{
"path": "dist",
"addressable": true
}
]
}