-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-devops-extension.json
77 lines (77 loc) · 2.11 KB
/
azure-devops-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
{
"manifestVersion": 1,
"publisher": "mard",
"version": "0.1.1",
"description": "Generates code names for work items.",
"categories": [
"Azure Boards"
],
"tags": [
"Work Item",
"Work Item control"
],
"scopes": [
"vso.work"
],
"targets": [
{ "id": "Microsoft.VisualStudio.Services" }
],
"icons": {
"default": "images/extension-icon.png"
},
"branding": {
"color": "rgb(127, 0, 255)",
"theme": "dark"
},
"screenshots": [
{ "path": "images/screenshot-01.png" }
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/mard/codenames"
},
"files": [
{
"path": "dist",
"addressable": true
},
{ "path": "images/extension-icon.png", "addressable": true },
{ "path": "images/screenshot-01.png", "addressable": true },
{ "path": "images/showcase.gif", "addressable": true }
],
"contributions": [
{
"id": "sample-work-item-form-control",
"type": "ms.vss-work-web.work-item-form-control",
"description": "Updates a field with easy to remember code name",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Codenames",
"uri": "dist/codenames/codenames.html",
"height": 36,
"inputs": [
{
"id": "CodenamesFieldName",
"name": "Field carrying a code name",
"description": "Reference name of a string field to be updated.",
"type": "WorkItemField",
"validation": {
"dataType": "String",
"isRequired": true
}
}
]
}
}
]
}