-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss-extension.json
74 lines (74 loc) · 1.79 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
{
"manifestVersion": 1,
"id": "vscode-vsts-extension-debug",
"version": "0.0.0",
"name": "VSCode / VSTS Extension Debug",
"scopes": [
"vso.profile",
"vso.work",
"vso.work_write"
],
"description": "This extension is a sample project to show a development and debugging workflow for VSTS extension development in VSCode.",
"publisher": "",
"public": false,
"icons": {
"default": "marketplace/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Demo"
],
"links": {
"support": {
"uri": "https://github.com/masonch/vscode-vsts-extension-debug"
}
},
"branding": {
"color": "rgb(51,65,133)",
"theme": "dark"
},
"files": [
{
"path": "css",
"addressable": true
},
{
"path": "img",
"addressable": true
},
{
"path": "libs",
"addressable": true
},
{
"path": "src",
"addressable": true
},
{
"path": "marketplace",
"addressable": true
}
],
"categories": [
"Plan and track"
],
"contributions": [
{
"id": "vscode-vsts-debug",
"targets": [
"ms.vss-web.home-hub-group"
],
"type": "ms.vss-web.hub",
"description": "VSCode / VSTS Debugging",
"properties": {
"name": "Demo",
"uri": "src/vscode-vsts.html",
"registeredObjectId": "vscode-vsts-debug-menu"
}
}
]
}