-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
95 lines (95 loc) · 2.05 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
{
"manifestVersion": 1,
"id": "vsts-debughelper-tasks",
"name": "Build/Release Inspection & Debug Tasks",
"version": "1.0.5",
"publisher": "knom",
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"description": "A set of build/release tasks to help debug build/release pipelines by inspecting environment variables or file structure on the agent.",
"public": true,
"categories": [
"Azure Pipelines"
],
"tags": [
"Debug",
"Error",
"Exceptions",
"Files",
"Directory",
"Directories",
"Build",
"Variables",
"Environment Variables"
],
"icons": {
"default": "static/images/logo.png"
},
"files": [{
"path": "print-env-task"
},
{
"path": "print-fs-structure-task"
}
],
"screenshots": [{
"path": "static/images/screen1.png"
},
{
"path": "static/images/screen2.png"
}, {
"path": "static/images/screen3.png"
}
],
"content": {
"details": {
"path": "README.md"
},"license": {
"path": "LICENSE.md"
}
},
"links": {
"getstarted": {
"uri": "https://github.com/knom/vsts-debug-tasks/"
},
"support": {
"uri": "https://github.com/knom/vsts-debug-tasks/issues"
},
"issues": {
"uri": "https://github.com/knom/vsts-debug-tasks/issues"
},
"privacypolicy": {
"uri": "https://github.com/knom/vsts-debug-tasks/blob/master/PRIVACY.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/knom/vsts-debug-tasks/"
},
"branding": {
"color": "rgb(250, 250,250)",
"theme": "light"
},
"contributions": [{
"id": "print-env-task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"type": "ms.vss-distributed-task.task",
"properties": {
"name": "print-env-task"
}
},
{
"id": "print-fs-structure-task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"type": "ms.vss-distributed-task.task",
"properties": {
"name": "print-fs-structure-task"
}
}
]
}