-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
121 lines (121 loc) · 3.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"manifestVersion": 1,
"id": "d365-f-o-build-analyzer",
"name": "D365 F&O Build Analyzer",
"version": "0.1.27",
"publisher": "downardo",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"scopes": [
"vso.build_execute"
],
"description": "Analyzes the compiler and best practice output logs for warnings, informations and ToDos to provide a build summary about them. And if needed the build can be failed.",
"categories": [
"Azure Pipelines"
],
"branding": {
"color": "rgb(34, 34, 34)",
"theme": "dark"
},
"tags": [
"Finance and Operations",
"Dynamics 365",
"Dynamics",
"Build task"
],
"repository": {
"type": "git",
"url": "https://github.com/downarowiczd/D365-F-O-build-analyzer"
},
"links": {
"support": {
"uri": "https://github.com/downarowiczd/D365-F-O-build-analyzer/issues"
},
"homepage": {
"uri": "https://downardo.at"
},
"linkedin": {
"uri": "https://www.linkedin.com/in/dominik-downarowicz/"
},
"license": {
"uri": "https://github.com/downarowiczd/D365-F-O-build-analyzer/blob/master/LICENSE"
},
"repository": {
"uri": "https://github.com/downarowiczd/D365-F-O-build-analyzer"
}
},
"badges": [
{
"href": "https://github.com/downarowiczd/D365-F-O-build-analyzer/actions/workflows/buildExtension.yml",
"uri": "https://github.com/downarowiczd/D365-F-O-build-analyzer/actions/workflows/buildExtension.yml/badge.svg",
"description": "Github build status"
}
],
"icons": {
"default": "images/extension-icon.png"
},
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"files": [
{
"path": "BuildAnalyzer"
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "images",
"addressable": true
},
{
"path": "buildTab.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "node_modules/azure-devops-extension-sdk",
"addressable": true,
"packagePath": "lib"
}
],
"contributions": [
{
"id": "d365-f-o-build-analyzer-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "Information from the build analyzer task",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "D365 F&O build analyzer",
"uri": "buildTab.html"
}
},
{
"id": "BuildAnalyzer",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "BuildAnalyzer"
}
}
]
}