This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvss-extension.json
97 lines (97 loc) · 2.92 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
{
"manifestVersion": 1,
"id": "PipelineArtifactCaching",
"name": "Restores and saves pipeline artifacts with Universal Packages",
"version": "1.0.0",
"publisher": "1eslighthouseeng",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Restores and saves pipeline artifacts from a cache given a key.",
"categories": [
"Azure Pipelines"
],
"files": [
{
"path": "_build/Tasks/RestoreAndSaveCacheV1"
},
{
"path": "_build/Tasks/RestoreCacheV1"
},
{
"path": "_build/Tasks/SaveCacheV1"
}
],
"icons": {
"default": "images/icon.png"
},
"contributions": [
{
"id": "RestoreAndSaveCacheV1",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/RestoreAndSaveCacheV1"
}
},
{
"id": "RestoreCacheV1",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/RestoreCacheV1"
}
},
{
"id": "SaveCacheV1",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/SaveCacheV1"
}
}
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"repository": {
"uri": "https://github.com/Microsoft/azure-pipelines-artifact-caching-tasks"
},
"issues": {
"uri": "https://github.com/Microsoft/azure-pipelines-artifact-caching-tasks/issues"
},
"support": {
"uri": "mailto:1es-lighthouse-eng@microsoft.com"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/Microsoft/azure-pipelines-artifact-caching-tasks"
},
"badges": [
{
"href": "https://dev.azure.com/1es-cat/azure-pipelines-artifact-caching-tasks/_build/latest?definitionId=17&branchName=master",
"uri": "https://dev.azure.com/1es-cat/azure-pipelines-artifact-caching-tasks/_apis/build/status/Microsoft.azure-pipelines-artifact-caching-tasks?branchName=master",
"description": "Build"
},
{
"href": "https://dev.azure.com/1es-cat/azure-pipelines-artifact-caching-tasks/_release?definitionId=1",
"uri": "https://vsrm.dev.azure.com/1es-cat/_apis/public/Release/badge/73af267c-80da-42c5-b634-ef63bb6d61fc/1/1",
"description": "Release"
}
]
}