forked from jbramwell/VSTS-Tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvss-extension.json
105 lines (105 loc) · 2.26 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": "pipeline-tools",
"name": "Pipeline Tools",
"version": "2.0.0",
"public": true,
"publisher": "thomas-demoulins",
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"description": "Various pipeline tasks to help extend diagnostics and runs retention.",
"categories": [
"Azure Pipelines"
],
"tags": [
"diagnostic",
"directory",
"file",
"retention",
"system"
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"icons": {
"default": "extension-icon.png"
},
"links": {
"home": {
"uri": "https://thilas.github.io/Pipeline-Tools/"
},
"getstarted": {
"uri": "https://thilas.github.io/Pipeline-Tools/"
},
"repository": {
"uri": "https://github.com/Thilas/Pipeline-Tools"
},
"support": {
"uri": "https://github.com/Thilas/Pipeline-Tools/issues"
},
"issues": {
"uri": "https://github.com/Thilas/Pipeline-Tools/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/Thilas/Pipeline-Tools.git"
},
"branding": {
"color": "#696969",
"theme": "dark"
},
"files": [{
"path": "ListApps"
}, {
"path": "ListFiles"
}, {
"path": "ListSystemInfo"
}, {
"path": "ListVariables"
}, {
"path": "RetainRun"
}],
"contributions": [{
"id": "ListApps",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "ListApps"
}
}, {
"id": "ListFiles",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "ListFiles"
}
}, {
"id": "ListSystemInfo",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "ListSystemInfo"
}
}, {
"id": "ListVariables",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "ListVariables"
}
}, {
"id": "RetainRun",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "RetainRun"
}
}]
}