-
Notifications
You must be signed in to change notification settings - Fork 3
/
vss-extension.json
68 lines (68 loc) · 1.29 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
{
"manifestVersion": 1,
"id": "semver-bump-task",
"name": "Semver version bump",
"version": "1.0.3",
"publisher": "yrtimid",
"public": false,
"targets": [{
"id": "Microsoft.VisualStudio.Services"
}],
"description": "Bumps (increments) semantic version",
"categories": [
"Azure Pipelines"
],
"tags": [
"semver",
"semantic",
"version",
"bump",
"increment"
],
"icons": {
"default": "icon_128.png"
},
"repository": {
"type": "git",
"url": "https://github.com/yrtimiD/azure-pipelines-semver-bump"
},
"links": {
"support": {
"uri": "https://github.com/yrtimiD/azure-pipelines-semver-bump/issues"
}
},
"content": {
"details": {
"path": "README.md"
}
},
"screenshots": [{
"path": "screenshots/screenshot1.png"
},
{
"path": "screenshots/screenshot2.png"
},
{
"path": "screenshots/screenshot3.png"
}
],
"files": [{
"path": "semver-bump-task"
}, {
"path": "screenshots",
"addressable": true
}],
"contributions": [{
"id": "semver-bump-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "semver-bump-task"
}
}],
"galleryFlags": [
"Public"
]
}