forked from HomecareHomebase/azure-bake-ado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
49 lines (49 loc) · 943 Bytes
/
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
{
"manifestVersion": 1,
"id": "azure-bake",
"name": "Azure Bake Tools",
"version": "0.1.143",
"publisher": "HomecareHomebase",
"icons": {
"default": "tools-icon.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Extension for the usage of the Azure Bake IaC Tool",
"categories": [
"Azure Pipelines"
],
"files": [
{
"path": "tasks/mix"
},
{
"path": "tasks/serve"
}
],
"contributions": [
{
"id": "azure-bake-mix",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/mix"
}
},
{
"id": "azure-bake-serve",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/serve"
}
}
]
}