-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.vsomanifest
89 lines (89 loc) · 3.25 KB
/
extension.vsomanifest
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
{
"manifestVersion": 1,
"scopes": [
"vso.build",
"vso.code",
"vso.test"
],
"contributions": [
{
"id": "10a16732-301b-40db-9f05-97fd7a4567ac",
"description": "Service endpoint type for CodeThreat Connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "codethreat",
"displayName": "CodeThreat",
"icon": "logo.png",
"url": {
"displayName": "Server Url",
"value": "https://cloud.codethreat.com",
"isVisible": true
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"headers": [
{
"name": "Authorization",
"value": "Basic {{ #base64 endpoint.username \":\" endpoint.password }}"
}
],
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "Username for connecting to the endpoint",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
},
{
"id": "password",
"name": "Password",
"description": "Password for connecting to the endpoint",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
}
]
}
]
}
},
{
"id": "14798623-9ece-49a6-a6bb-9bc87839b9a5",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/startscan"
}
},
{
"id": "simple",
"type": "ms.vss-build-web.build-results-tab",
"description": "Adds a 'Hello' tab to the query results",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"uri": "ct-hub.html",
"title": "Hello",
"name": "Hello"
}
}
],
"contributionTypes": []
}