This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvss-extension.qa.json
100 lines (100 loc) · 2.58 KB
/
vss-extension.qa.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
{
"$schema": "http://json.schemastore.org/vss-extension",
"manifestVersion": 1,
"public": false,
"id": "work-item-wiki-qa",
"name": "Work Item Wiki - QA",
"publisher": "JoachimDalen",
"version": "0.0.1",
"description": "Add static wiki pages to your work items",
"categories": ["Azure Boards"],
"demands": ["api-version/5.1"],
"tags": ["work item", "wiki", "work item wiki"],
"scopes": ["vso.wiki", "vso.code", "vso.work"],
"icons": {
"default": "extension-icon.png"
},
"content": {
"details": { "path": "marketplace/docs/README.md" },
"changelog": { "path": "marketplace/docs/CHANGELOG.md" }
},
"links": {
"repository": {
"uri": "https://github.com/joachimdalen/azdevops-work-item-wiki"
},
"support": {
"uri": "https://github.com/joachimdalen/azdevops-work-item-wiki/issues"
},
"privacypolicy": {
"uri": "https://docs.devops-extensions.dev/docs/privacy"
},
"license": {
"uri": "https://github.com/joachimdalen/azdevops-work-item-wiki/blob/master/LICENSE"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/joachimdalen/azdevops-work-item-wiki"
},
"branding": {
"color": "#069A85",
"theme": "dark"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"files": [
{
"path": "marketplace/docs/images",
"addressable": true
},
{
"path": "dist",
"addressable": true
}
],
"screenshots": [
{
"path": "marketplace/docs/images/bug-example.png"
},
{
"path": "marketplace/docs/images/control-config-1.png"
},
{
"path": "marketplace/docs/images/control-config-2.png"
}
],
"contributions": [
{
"id": "work-item-wiki-control",
"type": "ms.vss-work-web.work-item-form-control",
"targets": ["ms.vss-work-web.work-item-form"],
"description": "Add static wiki pages to your work items",
"properties": {
"name": "Work Item Wiki Control",
"uri": "dist/wi-control.html",
"inputs": [
{
"id": "wikiUrl",
"name": "Wiki Url",
"description": "The url of the wiki page",
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "versionBranch",
"name": "Version Branch (When using publish from code)",
"description": "The branch the wiki is loaded from",
"validation": {
"dataType": "String"
}
}
]
}
}
]
}