-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-devops-extension.json
65 lines (65 loc) · 1.73 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
{
"manifestVersion": 1,
"id": "azure-company",
"version": "1.0.560",
"name": "Azure Company",
"description": "Create the structure of your applications",
"categories": [
"Azure Pipelines"
],
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"scopes": [
"vso.extension.data_write"
],
"icons": {
"default": "logo.png"
},
"content": {
"details": {
"path": "overview.md"
}
},
"files": [{
"path": "static",
"addressable": true
},
{
"path": "dist",
"addressable": true
}
],
"contributions": [{
"id": "feature-company",
"type": "ms.vss-web.feature",
"description": "Show the new Company hub in the hub group",
"targets": ["ms.vss-web.managed-features"],
"properties": {
"name": "Enable Company",
"userConfigurable": false,
"hostConfigurable": true,
"defaultState": false,
"hostScopes": ["project"]
}
},
{
"id": "company-menu-group",
"type": "ms.vss-web.hub-group",
"description": "Adds an 'Company' hub group",
"targets": [
"ms.vss-web.project-hub-groups-collection"
],
"properties": {
"name": "Company",
"icon": "asset://static/logo.png"
},
"constraints": [{
"name": "Feature",
"properties": {
"featureId": "xxxxxxxxxxxxxx.company.feature-company"
}
}]
}
]
}