forked from lakshaykaushik/PublishHTMLReport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
executable file
·124 lines (124 loc) · 3.04 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
119
120
121
122
123
124
{
"manifestVersion": 1,
"id": "PublishHTMLReports",
"version": "1.2.174",
"name": "PublishHTMLReports",
"description": "An extension which lets you publish and visualize HTML reports(Like Jmeter load test reports) in Azure Devops as a seperate tab. ",
"publisher": "LakshayKaushik",
"public": true,
"repository": {
"type": "git",
"uri": "https://github.com/lakshaykaushik/PublishHTMLReport"
},
"screenshots": [
{
"path": "images/Sample7.png"
}
],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "LICENSE"
}
},
"icons": {
"default": "images/Sample6.png"
},
"tags": [
"Build",
"Jmeter",
"Build Pipeline",
"HTML",
"HTML Reports"
],
"scopes": [
"vso.build_execute"
],
"categories": [
"Azure Pipelines"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "sbadmin2-1.0.7",
"addressable": true
},
{
"path": "index.html",
"addressable": true
},
{
"path": "OverTime.html",
"addressable": true
},
{
"path": "Throughput.html",
"addressable": true
},
{
"path": "ResponseTimes.html",
"addressable": true
},
{
"path": "CustomsGraphs.html",
"addressable": true
},
{
"path": "publishhtmlreport",
"addressable": true
},
{
"path": "content/css",
"addressable": true
},
{
"path": "jquery.tablesorter.min.js",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"contributions": [
{
"id": "build-info-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to build results view",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Published HTML",
"uri": "index.html",
"supportsTasks": ["99e8d79d-febd-4f2e-b2df-da8f8257b59a"]
}
},
{
"id": "publishhtmlreport",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "publishhtmlreport"
}
}
]
}