This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vss-extension.json
128 lines (128 loc) · 2.96 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
{
"manifestVersion": 1,
"id": "mysql-toolkit-win",
"version": "0.0.2",
"name": "MySQL Toolkit for Windows",
"scopes": [
"vso.build_execute",
"vso.release_execute"
],
"description": "A collection of tasks to enable execution MySQL commands or scripts by Windows Agents (include Windows Hosted Agents).",
"baseUri": "http://DariuszPorowski.MS",
"publisher": "daporo",
"public": false,
"icons": {
"default": "images/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"MySQL",
"Utility taks",
"Tasks",
"Utility",
"Automation",
"Database",
"SQL"
],
"screenshots": [
{
"path": "screenshots/screen01.png"
},
{
"path": "screenshots/screen02.png"
},
{
"path": "screenshots/screen03.png"
}
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"home": {
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win"
},
"getstarted": {
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win/blob/master/README.md"
},
"learn": {
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win/blob/master/README.md"
},
"support": {
"uri": "mailto:Dariusz.Porowski@microsoft.com"
},
"repository": {
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win"
},
"issues": {
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win"
},
"branding": {
"color": "rgb(62,120,166)",
"theme": "dark"
},
"badges": [
{
"href": "https://github.com/DariuszPorowski/VSTS-MySQL-Toolkit-Win",
"uri": "https://daporo.visualstudio.com/_apis/public/build/definitions/167b9dbb-0b5a-4f10-b97e-e6d0624b19d9/41/badge",
"description": "CI build status"
}
],
"files": [
{
"path": "Tasks"
}
],
"categories": [
"Build and release"
],
"contributions": [
{
"id": "run-mysql-command",
"description": "Allows you to run a MySQL command",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/RunMySqlCommand"
}
},
{
"id": "run-mysql-script",
"description": "Allows you to run a MySQL script",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/RunMySqlScript"
}
},
{
"id": "run-mysql-scripts",
"description": "Allows you to run MySQL scripts",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/RunMySqlScripts"
}
}
]
}