-
Notifications
You must be signed in to change notification settings - Fork 3
/
vss-extension.json
95 lines (95 loc) · 2.27 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
92
93
94
95
{
"manifestVersion": 1,
"id": "variablehydration",
"name": "Variable Tools for Azure DevOps Services",
"version": "#{GitVersion.Major}#.#{GitVersion.Minor}#.#{GitVersion.Patch}#",
"public": true,
"publisher": "nkdAgility",
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
},
{
"id": "Microsoft.TeamFoundation.Server",
"version": "[15.0,)"
}
],
"description": "Includes Build tasks to save (or dehydrate) you Azure Pipeline Build variables and Azure Pipeline Release tasks to help you load (or rehydrate) then in your Azure Pipeline Release process.",
"categories": [
"Build and release"
],
"tags": [
"release",
"build",
"variable"
],
"links": {
"learn": {
"uri": "https://dev.azure.com/nkdagility/Azure-DevOps-Variable-Tools/_wiki/wikis/variable-tools"
},
"support": {
"uri": "https://github.com/nkdAgility/azure-devops-variable-tools/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/nkdAgility/azure-devops-variable-tools"
},
"badges": [
{
"href": "https://dev.azure.com/nkdagility/Azure-DevOps-Variable-Tools/_build?definitionId=99",
"uri": "https://dev.azure.com/nkdagility/Azure-DevOps-Variable-Tools/_apis/build/status/CI",
"description": "Azure Pipelines Build for the project"
}
],
"icons": {
"default": "images/extension-icon.png"
},
"branding": {
"color": "#1C3272",
"theme": "dark"
},
"screenshots": [
{
"path": "images/screenshot-01.png"
}
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE.txt"
}
},
"files": [
{
"path": "variablerehydration-task"
},
{
"path": "variabledehydration-task"
}
],
"contributions": [
{
"id": "variablerehydration-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "variablerehydration-task"
}
},
{
"id": "variabledehydration-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "variabledehydration-task"
}
}
]
}