-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss-extension.json
73 lines (73 loc) · 1.56 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": "printAllVariables",
"version": "1.0.0",
"name": "Print all variables",
"description": "Print to the screen all the available varaibles and their values for this job. Cross platform (work on Windows/Linux/Mac)",
"publisher": "ShaykiAbramczyk",
"icons": {
"default": "static/images/icon.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Azure Pipelines"
],
"categories": [
"Azure Pipelines"
],
"content": {
"license": {
"path": "license.md"
},
"details": {
"path": "README.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/shayki5/azure-devops-print-all-variables"
},
"content": {
"details": {
"path": "README.MD"
},
"license": {
"path": "LICENSE.md"
},
"privacy": {
"path": "PRIVACY.md"
}
},
"links": {
"support": {
"uri": "https://github.com/shayki5/azure-devops-print-all-variables/issues"
},
"license": {
"uri": "https://github.com/shayki5/azure-devops-print-all-variables/blob/master/license.md"
},
"privacypolicy": {
"uri": "https://github.com/shayki5/azure-devops-print-all-variables/blob/master/PRIVACY.md"
}
},
"files": [
{
"path": "printAllVariables"
}
],
"contributions": [
{
"id": "printAllVariables",
"targets": [
"ms.vss-distributed-task.tasks"
],
"type": "ms.vss-distributed-task.task",
"properties": {
"name": "printAllVariables"
}
}
]
}