-
Notifications
You must be signed in to change notification settings - Fork 2
/
vss-extension.json
118 lines (118 loc) · 2.65 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"manifestVersion": 1,
"id": "chucknorris-build-enhancer",
"version": "0.1.36",
"name": "Chuck Norris Build Enhancer",
"scopes": [
"vso.build"
],
"description": "Add this extension to your build definition and get a Chuck Norris quote to help you keep your builds in shape!",
"publisher": "mathias",
"public": false,
"icons": {
"default": "static/images/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
},
{
"id": "Microsoft.TeamFoundation.Server",
"version": "[16.2,)"
}
],
"tags": [
"Build",
"Fun"
],
"links": {
"home": {
"uri": "https://github.com/solidify/devops-extension-chuck-norris"
},
"getstarted": {
"uri": "https://github.com/solidify/devops-extension-chuck-norris"
},
"learn": {
"uri": "https://github.com/solidify/devops-extension-chuck-norris"
},
"support": {
"uri": "https://github.com/solidify/devops-extension-chuck-norris/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/solidify/devops-extension-chuck-norris"
},
"branding": {
"color": "rgb(0, 0, 0)",
"theme": "dark"
},
"content": {
"license": {
"path": "docs/LICENSE.md"
},
"details": {
"path": "docs/overview.md"
}
},
"files": [
{
"path": "dist",
"addressable": true,
"packagePath": "enhancer"
},
{
"path": "src/task",
"addressable": true,
"packagePath": "ChuckNorrisTask"
},
{
"path": "docs",
"addressable": true,
"packagePath": "docs"
},
{
"path": "static",
"addressable": true,
"packagePath": "/"
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"categories": [
"Build and release"
],
"contributions": [
{
"id": "chuck-norris-task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"type": "ms.vss-distributed-task.task",
"properties": {
"name": "ChuckNorrisTask"
}
},
{
"id": "chuck-norris-build-status-section",
"type": "ms.vss-build-web.build-results-section",
"description": "Adds a section to the build Summary with Chuck Norris's comment about the build.",
"targets": [
".build-info-tab",
"ms.vss-build-web.build-results-summary-tab"
],
"properties": {
"name": "Chuck Norris Says",
"uri": "StatusSection.html",
"order": 20,
"height": 120,
"supportsTasks": [
"6785970c-2d58-4260-b047-0a54028ee9c1"
]
}
}
]
}