-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvss-extension.json
107 lines (107 loc) · 2.6 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
{
"manifestVersion": 1,
"id": "office-mailapps-task",
"name": "Office Outlook Add-In Build/RM Tasks",
"version": "1.2.1",
"publisher": "knom",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "A set of tasks for installing Office Outlook Add-Ins to Exchange and Office365.",
"categories": [
"Azure Pipelines"
],
"public": true,
"tags": [
"Office",
"MailApp",
"Outlook",
"Exchange",
"EWS"
],
"icons": {
"default": "extension-icon.png"
},
"files": [
{
"path": "InstallMailApp"
},
{
"path": "UninstallMailApp"
},
{
"path": "node_modules"
}
],
"screenshots": [
{
"path": "docs/addtask.png"
},
{
"path": "docs/install.png"
}
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"home": {
"uri": "https://github.com/knom/vsts-office-tasks"
},
"getstarted": {
"uri": "https://github.com/knom/vsts-office-tasks/blob/master/README.md"
},
"learn": {
"uri": "https://github.com/knom/vsts-office-tasks/blob/master/README.md"
},
"support": {
"uri": "https://github.com/knom/vsts-office-tasks/issues"
},
"repository": {
"uri": "https://github.com/knom/vsts-office-tasks"
},
"issues": {
"uri": "https://github.com/knom/vsts-office-tasks/issues"
},
"privacypolicy": {
"uri": "https://github.com/knom/vsts-office-tasks/blob/master/PRIVACY.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/knom/vsts-office-tasks/"
},
"branding": {
"color": "rgb(0,111,196)",
"theme": "dark"
},
"contributions": [
{
"id": "InstallMailApp",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "InstallMailApp"
}
},
{
"id": "UninstallMailApp",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "UninstallMailApp"
}
}
]
}