generated from shudv/azure-pipelines-task-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1017 Bytes
/
manifest.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
{
"manifestVersion": 1.0,
"id": "MyCustomExtension{{tag}}",
"name": "My Custom Extension {{tag}}",
"icons": {
"default": "icon.png"
},
"version": "{{version}}",
"description": "This extension contains a custom build and release task.",
"publisher": "{{publisher}}",
"public": false,
"categories": [
"Azure Pipelines"
],
"content": {
"details": {
"path": "README.md"
}
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "custom-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "custom-task"
}
}
],
"files": [
{
"path": "custom-task",
"addressable": true,
"packagePath": "custom-task"
}
]
}