-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
75 lines (73 loc) · 1.96 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
{
"manifestVersion": 1,
"id": "workitem-info-field",
"publisher": "BertSantema",
"version": "1.0.17",
"name": "Work item info field",
"description": "Adds a read-only information field, e.g. to display instructions",
"icons": {
"default": "img/logo.png"
},
"public": false,
"categories": ["Repos"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "workitem-info-field-form-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "Customworkitem-info-field form control",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Information field",
"uri": "workitem-info-field.html",
"inputs": [
{
"id": "InfoText",
"name": "The text that should be shown.",
"validation": {
"dataType": "String",
"isRequired": false
}
},
{
"id": "InfoLinkTitle",
"name": "Hyperlink title field",
"validation": {
"dataType": "String",
"isRequired": false
}
},
{
"id": "InfoLinkUrl",
"name": "Hyperlink address field",
"validation": {
"dataType": "String",
"isRequired": false
}
}
]
}
}
],
"files": [
{
"path": "workitem-info-field.html",
"addressable": true
},
{
"path": "img",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
]
}