mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Fixing Database backup page target layout * Filtering out Azure sql db issues from assessment results Correcting the database count for issued databases in sku rec page. * Adding copy migration details button to migration status * Adding start migration button to toolbar * Fixing a syntax error in package.json * Adding rg and location to target selection page Filtering storage account by target location. * Fixing dashboard title to azure sql migration * Not making assessment targets selected by default. * Adding tooltip for database and instance table items. * Fixing duplicate task widget * Some fixes mentioned in the PR Localizing button text renaming a var changing null to undefined. * Adding enum for Migration target types * Fixing a critical multi db migration bug because of unhandled race condition * Adding Azure location api to azure core * Adding source database info in status
89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"name": "sql-migration",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "0.0.5",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": ">=1.27.0"
|
|
},
|
|
"activationEvents": [
|
|
"onDashboardOpen",
|
|
"onCommand:sqlmigration.start",
|
|
"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": "%start-migration-command%",
|
|
"category": "%migration-command-category%",
|
|
"icon": "./images/migration.svg"
|
|
},
|
|
{
|
|
"command": "sqlmigration.openNotebooks",
|
|
"title": "%migration-notebook-command-title%",
|
|
"category": "%migration-command-category%"
|
|
}
|
|
],
|
|
"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": 0,
|
|
"widget": {
|
|
"tasks-widget": [
|
|
"sqlmigration.start"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"name": "",
|
|
"row": 0,
|
|
"col": 1,
|
|
"rowspan": 2.5,
|
|
"colspan": 3.5,
|
|
"widget": {
|
|
"modelview": {
|
|
"id": "migration.dashboard"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"__metadata": {
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|