-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
133 lines (133 loc) · 4.41 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
125
126
127
128
129
130
131
132
133
{
"manifestVersion": 1,
"id": "vsts-extension",
"name": "Raygun",
"version": "1.0.1",
"galleryFlags": [
"Public"
],
"publisher": "raygun",
"description": "Provides a task for uploading symbols to Raygun from a TFS/Team Services build or release definition",
"categories": [
"Build and release"
],
"tags": [
"deploy",
"release",
"iOS",
"Xcode",
"Apple",
"iPad",
"iPhone",
"tvOS",
"watchOS"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "raygun_default.png"
},
"visibility": [
"Build and release"
],
"content":{
"details": {
"path": "docs/vsts-README.md"
}
},
"links": {
"getstarted": {
"uri": "https://github.com/Ivan-L/vsts-raygun-extension"
},
"support": {
"uri": "https://github.com/Ivan-L/vsts-raygun-extension/issues"
}
},
"files": [
{
"path": "_build/Tasks/UploadSymbols"
},
{
"path": "images",
"addressable": true
}
],
"scope": [
"vso.build",
"vso.serviceendpoint"
],
"contributions": [
{
"id": "upload-symbols",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "_build/Tasks/UploadSymbols"
}
},
{
"id": "raygun-service-endpoint",
"description": "RaygunAuthenticationEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "raygun",
"displayName": "Raygun",
"url": "https://raygun.com/",
"inputDescriptors": [],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"displayName": "External Access Token",
"headers": [],
"inputDescriptors": [
{
"id": "apitoken",
"name": "External Access Token",
"description": "You can create this token within your <a href=\"https://app.raygun.io/user\" target=\"_blank\">user settings</a> in Raygun in the External Access Token section.",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Raygun E-mail",
"description": "The e-mail address of the service account used to authenticate with Raygun.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "Password for the account that is connecting to Raygun.",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
]
}
}
]
}