-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazure-devops-extension.json
119 lines (119 loc) · 2.83 KB
/
azure-devops-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
119
{
"manifestVersion": 1,
"id": "azure-pipelines-protractor",
"name": "Protractor Report",
"publisher": "MaciejMaciejewski",
"public": false,
"author": "Maciej Maciejewski",
"version": "1.1.2",
"description": "Embed Protractor HTML report in Azure Pipelines",
"galleryFlags": [
"Preview"
],
"repository": {
"type": "git",
"uri": "https://github.com/maciejmaciejewski/azure-pipelines-protractor"
},
"screenshots": [
{
"path": "documentation/protractor-tab-build.png"
},
{
"path": "documentation/azure-pipelines-configuration.png"
}
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scopes": [
"vso.build_execute",
"vso.release_execute"
],
"icons": {
"default": "images/protractor-logo.png"
},
"demands": [
"api-version/3.0"
],
"tags": [
"Protractor",
"Build",
"Release",
"Azure Pipelines"
],
"categories": [
"Azure Pipelines"
],
"content": {
"details": {
"path": "OVERVIEW.md"
},
"license": {
"path": "LICENSE"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true
},
{
"path": "tasks/PublishProtractorReport",
"addressable": true
}
],
"contributions": [
{
"id": "build-protractor-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "Embed Protractor HTML report in Azure Pipelines",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Protractor",
"uri": "dist/tabContent.html",
"registeredObjectId": "registeredEnvironmentObject",
"supportsTasks": ["e9a37290-3428-11e9-a0c0-333b046ddb44", "f921c333-68d3-50ff-9d01-c71ecafad96b", "3b603ffa-eaed-5a30-87b4-7ffdadd8f7c2"],
"dynamic": true
},
"includes": [
"ms.vss-releaseManagement-web.release-service-data-external"
]
},
{
"id": "release-protractor-tab",
"type": "ms.vss-web.tab",
"description": "Embed Protractor HTML report in Azure Pipelines",
"targets": [ "ms.vss-releaseManagement-web.release-environment-editor-tab" ],
"properties": {
"name": "Protractor",
"uri": "dist/tabContent.html",
"registeredObjectId": "registerRelease",
"dynamic": true
},
"includes": ["ms.vss-releaseManagement-web.release-service-data-external"]
},
{
"id": "PublishProtractorReport",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/PublishProtractorReport",
"displayName": "Publish Protractor Report"
}
}
]
}