forked from microsoft/vsts-extension-integer-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
97 lines (97 loc) · 2.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"manifestVersion": 1,
"id": "hitcount-control",
"version": "0.1.0",
"name": "HitCount Control",
"scopes": [
"vso.work",
"vso.work_write"
],
"description": "Describe your extension.",
"publisher": "<your-publisher",
"icons": {
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Sample"
],
"content": {
"details": {
"path": "details.md"
}
},
"links": {
"home": {
"uri": "https://bit.ly"
},
"getstarted": {
"uri": "https://bit.ly"
},
"learn": {
"uri": "https://bit.ly"
},
"support": {
"uri": "https://bit.ly"
},
"repository": {
"uri": "https://bit.ly"
},
"issues": {
"uri": "https://bit.ly"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"files": [
{
"path": "img",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "styles",
"addressable": true
},
{
"path": "index.html",
"addressable": true
}
],
"categories": [
"Integrate"
],
"contributions": [
{
"id": "hitcount-control-contribution",
"type": "ms.vss-work-web.work-item-form-control",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Priority",
"group": "contributed",
"uri": "index.html",
"height": 28,
"inputs": [
{
"id": "FieldName",
"description": "The field associated with the control.",
"validation": {
"dataType": "Field",
"isRequired": true
}
}
]
}
}
]
}