This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvss-extension.json
74 lines (74 loc) · 1.86 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
{
"manifestVersion": 1,
"id": "git-tag-on-release-task",
"name": "Tag\\Branch Git on Release",
"version": "0.0.16",
"publisher": "jabbera",
"public": "true",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Task for tagging or branching tfs git artifacts during a release with the release name.",
"categories": [
"Build and release"
],
"tags": [ "release", "tag", "git", "artifacts", "code", "git tag", "branch", "git branch" ],
"content": {
"license": {
"path": "license"
},
"details": {
"path": "overview.md"
}
},
"screenshots": [
{
"path": "screenshots/screenshot1.png"
},
{
"path": "screenshots/screenshot2.png"
}
],
"repository": {
"type":"git",
"uri": "https://github.com/jabbera/vsts-git-release-tag"
},
"icons": {
"default": "extension-icon.png"
},
"files": [
{
"path": "Tasks/git-tag-on-release-task"
},
{
"path": "Tasks/git-branch-on-release-task"
}
],
"contributions": [
{
"id": "git-tag-on-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/git-tag-on-release-task"
}
},
{
"id": "git-branch-on-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/git-branch-on-release-task"
}
}
],
"galleryFlags": [
"Public"
]
}