-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
99 lines (99 loc) · 2.38 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
{
"manifestVersion": 1,
"id": "jgivenTestIntegration",
"version": "0.5.2",
"name": "JGiven Reports Publisher",
"publisher": "TNGTechnologyConsultingGmbH",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "publishjgivenreport",
"addressable": true
},
{
"path": "index.html",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "app.bundle.js",
"addressable": true
},
{
"path": "styles.css",
"addressable": true
},
{
"path": "font.woff",
"addressable": true
}
],
"categories": [
"Azure Pipelines"
],
"scopes": [
"vso.build_execute"
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"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": "JGiven Test Results",
"uri": "index.html",
"supportsTasks": ["6d4b1476-3a89-4eca-ba13-df048e3d697a"]
}
},
{
"id": "custom-publishjgivenreport",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "publishjgivenreport"
}
}
],
"galleryFlags": [
"Public"
],
"icons": {
"default": "resources/icon.png"
},
"repository": {
"type": "git",
"uri": "https://github.com/TNG/jgiven-azure-plugin"
},
"links": {
"support": {
"uri": "https://github.com/TNG/jgiven-azure-plugin"
}
}
}