-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
105 lines (104 loc) · 3.31 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
98
99
100
101
102
103
104
105
{
"manifestVersion": 1,
"id": "devops-markdown-text-control",
"publisher": "Ricardo-Zambon",
"version": "1.0.0",
"name": "Markdown Text Control",
"description": "Extension to show text field control and markdown in same row",
"public": true,
"categories": [ "Azure Boards" ],
"scopes": ["vso.work", "vso.work_write"],
"icons": {
"default": "static/images/MarketplaceLogo.jpg"
},
"links": {
"learn": {
"uri": "https://github.com/RicardoZambon/devops-markdown-text-control/blob/master/README.md"
},
"support": {
"uri": "https://github.com/RicardoZambon/devops-markdown-text-control"
},
"repository": {
"uri": "https://github.com/RicardoZambon/devops-markdown-text-control"
},
"issues": {
"uri": "https://github.com/RicardoZambon/devops-markdown-text-control/issues"
}
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"content": {
"details": {
"path": "details.md"
}
},
"tags": [ "Work Item", "Work Item control", "Work Item form", "Work item form custom control", "Work item field" ],
"contributions": [
{
"id": "markdown-form-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "A markdown text control for work item form.",
"targets": ["ms.vss-work-web.work-item-form"],
"properties": {
"name": "Markdown Text Control",
"uri": "static/index.html",
"height": 50,
"inputs": [
{
"id": "FieldName",
"name": "Field",
"type": "WorkItemField",
"properties": {
"workItemFieldTypes": ["String"]
},
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "Markdown",
"name": "Markdown",
"inputMode": "TextArea",
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "Script",
"name": "Value Converter Script",
"inputMode": "TextArea",
"validation": {
"dataType": "String",
"isRequired": false
}
}
]
}
}
],
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "static",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "node_modules/markdown-it/dist",
"addressable": true,
"packagePath": "/"
}
]
}