mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
* Adding Dashboard Fixing auth keys api create status Dialog * making some changes requested in the PR * switched to text component from dom component * Adding TODO comment * Fixing image url to work on windows * Fixing stuff pointed out in PR comments * adding return type to dasboard register function * Adding more todos
84 lines
2.1 KiB
JSON
84 lines
2.1 KiB
JSON
{
|
|
"name": "sql-migration",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "0.0.1",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"azdata": ">=1.19.0"
|
|
},
|
|
"activationEvents": [
|
|
"onDashboardOpen",
|
|
"onCommand:sqlmigration.start",
|
|
"onCommand:sqlmigration.testDialog",
|
|
"onCommand:sqlmigration.openNotebooks"
|
|
],
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "sqlmigration.start",
|
|
"title": "SQL Migration Start",
|
|
"category": "SQL Migration"
|
|
},
|
|
{
|
|
"command": "sqlmigration.testDialog",
|
|
"title": "SQL Migration test dialog",
|
|
"category": "SQL Migration"
|
|
},
|
|
{
|
|
"command": "sqlmigration.openNotebooks",
|
|
"title": "%migration-notebook-command-title%",
|
|
"category": "SQL Migration"
|
|
}
|
|
],
|
|
"dashboard.tabs": [
|
|
{
|
|
"id": "migration-dashboard",
|
|
"description": "%migration-dashboard-title%",
|
|
"provider": "MSSQL",
|
|
"title": "%migration-dashboard-title%",
|
|
"icon": {
|
|
"light": "./images/migration.svg",
|
|
"dark": "./images/migration.svg"
|
|
},
|
|
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud",
|
|
"container": {
|
|
"grid-container": [
|
|
{
|
|
"name": "",
|
|
"row": 0,
|
|
"col": 1,
|
|
"rowspan": 5,
|
|
"colspan": 5,
|
|
"widget": {
|
|
"modelview": {
|
|
"id": "migration.dashboard"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"__metadata": {
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|