forked from cloudpups/authenticated-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
94 lines (94 loc) · 2.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
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
{
"manifestVersion": 1,
"id": "authenticated-lcs-scripts",
"publisher": "inway-fh",
"version": "0.0.8",
"name": "Authenticated LCS Scripts",
"description": "Use a LCS service connection with scripts instead of pasting secrets into variables!",
"categories": [
"Azure Pipelines"
],
"tags": [
"service-connection",
"authenticated",
"bash",
"powershell"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "tasks/powershell"
},
{
"path": "tasks/bash"
},
{
"path": "docs",
"addressable": true
}
],
"content": {
"details": {
"path": "docs/Overview.md"
},
"license": {
"path": "LICENSE"
}
},
"icons": {
"default": "images/logo.png"
},
"links": {
"home": {
"uri": "https://github.com/InwaySystems/authenticated-lcs-scripts"
},
"repository": {
"uri": "https://github.com/InwaySystems/authenticated-lcs-scripts"
},
"issues": {
"uri": "https://github.com/InwaySystems/authenticated-lcs-scripts/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/InwaySystems/authenticated-lcs-scripts"
},
"contributions": [
{
"id": "powershell-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/powershell"
}
},
{
"id": "bash-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/bash"
}
}
],
"screenshots": [
{
"path": "docs/screenshots/pipeline_tasks.png",
"isDefault": true
},
{
"path": "docs/screenshots/highlighted_env_powershell.png"
},
{
"path": "docs/screenshots/highlighted_env_bash.png"
}
]
}