-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvss-extension.json
49 lines (49 loc) · 1.03 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
{
"manifestVersion": 1,
"id": "change id this extension",
"version": "0.0.1",
"name": "change name this Extension",
"description": "change description this extension",
"publisher": "AleksandrBerezin",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "image/logo.svg"
},
"contributions": [
{
"id": "directory-hub",
"type": "ms.vss-web.hub",
"description": "Directory hub",
"targets": ["ms.vss-web.project-admin-hub-group"],
"properties": {
"name": "change name this extension in TFS",
"uri": "index.html"
}
}
],
"scopes": ["vso.work_full"],
"files": [
{
"path": "index.html",
"addressable": true
},
{
"path": "dist/index.js",
"addressable": true
},
{
"path": "dist/style.css",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"categories": ["Collaborate"]
}