-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvss-extension.json
129 lines (129 loc) · 3.01 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"manifestVersion": 1,
"id": "bicep-tasks",
"version": "0.5.1",
"name": "Bicep Tasks",
"publisher": "piraces",
"description": "Provides Azure DevOps tasks to install and run Microsoft Bicep CLI commands (cross-platform)",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"categories": [
"Azure Pipelines"
],
"tags": [
"bicep",
"ARM",
"azure",
"deploy"
],
"galleryFlags": [
"Free",
"Public"
],
"icons": {
"default": "icon.png"
},
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "src/install",
"packagePath": "install"
},
{
"path": "src/run",
"packagePath": "run"
},
{
"path": "src/decompile",
"packagePath": "decompile"
},
{
"path": "node_modules",
"packagePath": "install/node_modules"
},
{
"path": "node_modules",
"packagePath": "run/node_modules"
},
{
"path": "node_modules",
"packagePath": "decompile/node_modules"
}
],
"links": {
"overview": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/blob/master/README.md"
},
"learn": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/blob/master/LEARN.md"
},
"getstarted": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/blob/master/QUICK_START.md"
},
"license": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/blob/master/LICENSE"
},
"repository": {
"uri": "https://github.com/piraces/azure-devops-bicep-task"
},
"issues": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/issues"
},
"support": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/discussions"
},
"privacypolicy": {
"uri": "https://github.com/piraces/azure-devops-bicep-task/blob/master/PRIVACY.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/piraces/azure-devops-bicep-task"
},
"contributions": [
{
"id": "install-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "install"
}
},
{
"id": "run-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "run"
}
},
{
"id": "decompile-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "decompile"
}
}
]
}