forked from steeelydan/azure-devops-test-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
55 lines (55 loc) · 1.1 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
{
"manifestVersion": 1,
"version": "0.0.21",
"name": "My Extension",
"description": "Use hot reload and debug directly in VS Code",
"publisher": "steeelydan",
"demands": ["api-version/3.0"],
"categories": ["Azure Repos"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"content": {
"details": {
"path": "README.md"
}
},
"icons": {
"default": "img/world.png"
},
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "img",
"addressable": true
}
],
"contributions": [
{
"id": "hello-world-hub-group",
"type": "ms.vss-web.hub-group",
"description": "Sample hub group",
"targets": ["ms.vss-web.project-hub-groups-collection"],
"properties": {
"name": "Hello World!",
"icon": {
"dark": "img/world.png",
"light": "img/world.png"
}
}
},
{
"id": "default-hub",
"type": "ms.vss-web.hub",
"targets": [".hello-world-hub-group"],
"properties": {
"uri": "dist/Hub/Hub.html"
}
}
]
}