-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
57 lines (57 loc) · 1.32 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
{
"manifestVersion": 1,
"id": "task-702d7430-c3a9-422a-87f2-569ed16ba6be",
"name": "Coverage API Test",
"version": "0.0.106",
"publisher": "AlexAlves",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Tools for generate the coverage by test result of a integration test.",
"categories": [
"Azure Pipelines"
],
"branding": {
"color": "rgb(224, 247, 246)",
"theme": "light"
},
"public": true,
"tags": [
"test",
"integration test",
"coverage",
"swagger api",
"api"
],
"content": {
"details": {
"path": "README.md"
}
},
"icons": {
"default": "images/extensionicon.png"
},
"files": [
{
"path": "dist"
}
],
"repository": {
"type": "git",
"uri": "https://github.com/alexalvess/api-coverage-test"
},
"contributions": [
{
"id": "custom-task-coverage-api-test",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "dist"
}
}
]
}