-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
52 lines (52 loc) · 1009 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
50
51
52
{
"manifestVersion": 1,
"id": "ecs-task-v2",
"name": "Ecs-Task-v2",
"publisher": "Nubewired",
"version": "1.0.0",
"public": false,
"description": "A Simple Task to deploy ecs services",
"categories": [
"Azure Pipelines",
"Azure Repos"
],
"Tags": [
"Azure DevOps",
"Azure Pipelines",
"Release",
"Build"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scopes": [
"vso.release",
"vso.release_manage"
],
"icons": {
"default": "images/icon.png",
"large": "images/icon.png"
},
"branding": {
"color": "#3B3E43",
"theme": "dark"
},
"files": [
{
"path": "task"
}
],
"contributions": [
{
"id": "build-task",
"description": "Task with a dynamic property getting data from an endpoint REST data source",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "task"
}
}
]
}