-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
76 lines (76 loc) · 1.84 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
{
"manifestVersion": 1,
"id": "next-folder-task",
"name": "Folder Name Generator",
"version": "0.0.1",
"publisher": "dp7g09",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"galleryFlags": [
"Public"
],
"description": "Set Azure DevOps variable(s) with next folder name incremented from existing names. E.g. RC3, if RC1 & RC2 already exist.",
"categories": [
"Azure Pipelines"
],
"tags": [
"folder",
"directory",
"Release Candidate",
"RC"
],
"icons": {
"default": "images/extension-icon.png"
},
"screenshots": [
{
"path": "images/screenshots/nfn1.png"
},
{
"path": "images/screenshots/nfn2.png"
}
],
"content": {
"details": {
"path": "Overview.md"
}
},
"links": {
"home": {
"uri": "https://github.com/dp7g09/azure-devops-nextfolder"
},
"support": {
"uri": "https://github.com/dp7g09/azure-devops-nextfolder/issues"
},
"repository": {
"uri": "https://github.com/dp7g09/azure-devops-nextfolder"
},
"issues": {
"uri": "https://github.com/dp7g09/azure-devops-nextfolder/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/dp7g09/azure-devops-nextfolder"
},
"files": [
{
"path": "nextFolderNameTask"
}
],
"contributions": [
{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "nextFolderNameTask"
}
}
]
}