forked from giuliov/hugo-vsts-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
91 lines (91 loc) · 2.07 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
{
"manifestVersion": 1,
"id": "hugo-extension",
"version": "2.0.5",
"name": "Hugo",
"publisher": "giuliovdev",
"description": "Generates a static web site using Hugo, a Fast and Flexible Website Generator.",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"galleryFlags": [
"Public"
],
"icons": {
"default": "img/hugo-128x128.png"
},
"scopes": [
"vso.build_execute",
"vso.release_execute"
],
"categories": [
"Azure Pipelines"
],
"tags": [
"hugo",
"static generator",
"build"
],
"branding": {
"color": "rgb(10,25,34)",
"theme": "dark"
},
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE.txt"
}
},
"links": {
"getstarted": {
"uri": "https://github.com/giuliov/hugo-vsts-extension/blob/master/README.md"
},
"support": {
"uri": "https://github.com/giuliov/hugo-vsts-extension/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/giuliov/hugo-vsts-extension"
},
"contributions": [
{
"id": "hugo-build-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "hugo-task"
}
},
{
"id": "hugo-build-task-v2",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "hugo-taskV2"
}
}
],
"files": [
{
"path": "hugo-task",
"addressable": false
},
{
"path": "hugo-taskV2",
"addressable": false
},
{
"path": "images",
"addressable": true
}
]
}