-
Notifications
You must be signed in to change notification settings - Fork 8
/
extension-manifest.json
86 lines (85 loc) · 2.12 KB
/
extension-manifest.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
{
"manifestVersion": 1,
"id": "PeterGroenewegen-Xpirit-Vsts-Build-InlinePowershell",
"name": "Run Inline Powershell and Azure Powershell",
"version": "1.1.10",
"publisher": "petergroenewegen",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Build extension that enable you to run Powershell and Azure Powershell from a textbox.",
"categories": [
"Build and release"
],
"tags": [
"powershell",
"build",
"inline",
"azure",
"azurepowershell"
],
"screenshots": [
{
"path": "Xpirit.Vsts.Build.InlinePowershell.Extension/images/screenshots/vsts-InlinePowershell-task.png"
},
{
"path": "Xpirit.Vsts.Build.InlinePowershell.Extension/images/screenshots/vsts-InlinePowershell-InlinePowershell.png"
}
],
"content": {
"details": {
"path": "Xpirit.Vsts.Build.InlinePowershell.Extension/readme.md"
},
"license": {
"path": "Xpirit.Vsts.Build.InlinePowershell.Extension/license.txt"
}
},
"links": {
"getstarted": {
"uri": "https://pgroene.wordpress.com/2016/05/20/using-the-inline-powershell-vsts-task"
},
"support": {
"uri": "https://github.com/XpiritBV/Vsts-Build-Task-InlinePowershell/wiki"
}
},
"branding": {
"color": "rgb(36, 43, 50)",
"theme": "dark"
},
"icons": {
"default": "Xpirit.Vsts.Build.InlinePowershell.Extension/images/Powershell.png"
},
"files": [
{
"path": "Xpirit-Vsts-Build-InlinePowershell"
},
{
"path": "Xpirit-Vsts-Build-InlineAzurePowershell"
}
],
"contributions": [
{
"id": "Xpirit-Vsts-Build-InlinePowershell",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Xpirit-Vsts-Build-InlinePowershell"
}
},
{
"id": "Xpirit-Vsts-Build-InlineAzurePowershell",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Xpirit-Vsts-Build-InlineAzurePowershell"
}
}
]
}