tab fix for sql-migration after compile (#16996)

This commit is contained in:
Alex Ma
2021-09-03 13:23:44 -07:00
committed by GitHub
parent 260b87d934
commit 1e9cf0b9e4

View File

@@ -1,176 +1,177 @@
{ {
"name": "sql-migration", "name": "sql-migration",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.1.8", "version": "0.1.8",
"publisher": "Microsoft", "publisher": "Microsoft",
"preview": true, "preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt", "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
"icon": "images/extension.png", "icon": "images/extension.png",
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e", "aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
"engines": { "engines": {
"vscode": "*", "vscode": "*",
"azdata": ">=1.29.0" "azdata": ">=1.29.0"
}, },
"activationEvents": [ "activationEvents": [
"onDashboardOpen", "onDashboardOpen",
"onCommand:sqlmigration.start", "onCommand:sqlmigration.start",
"onCommand:sqlmigration.newsupportrequest", "onCommand:sqlmigration.newsupportrequest",
"onCommand:sqlmigration.sendfeedback", "onCommand:sqlmigration.sendfeedback",
"onCommand:sqlmigration.openNotebooks" "onCommand:sqlmigration.openNotebooks"
], ],
"main": "./out/main", "main": "./out/main",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git" "url": "https://github.com/Microsoft/azuredatastudio.git"
}, },
"extensionDependencies": [ "extensionDependencies": [
"Microsoft.mssql" "Microsoft.mssql"
], ],
"contributes": { "contributes": {
"commands": [ "commands": [
{ {
"command": "sqlmigration.start", "command": "sqlmigration.start",
"title": "%start-migration-command%", "title": "%start-migration-command%",
"category": "%migration-command-category%", "category": "%migration-command-category%",
"icon": "./images/migration.svg" "icon": "./images/migration.svg"
}, },
{ {
"command": "sqlmigration.newsupportrequest", "command": "sqlmigration.newsupportrequest",
"title": "%new-support-request-command%", "title": "%new-support-request-command%",
"category": "%migration-command-category%", "category": "%migration-command-category%",
"icon": "./images/newSupportRequest.svg" "icon": "./images/newSupportRequest.svg"
}, },
{ {
"command": "sqlmigration.sendfeedback", "command": "sqlmigration.sendfeedback",
"title": "%send-feedback-command%", "title": "%send-feedback-command%",
"category": "%migration-command-category%", "category": "%migration-command-category%",
"icon": "./images/sendFeedback.svg" "icon": "./images/sendFeedback.svg"
}, },
{ {
"command": "sqlmigration.openNotebooks", "command": "sqlmigration.openNotebooks",
"title": "%migration-notebook-command-title%", "title": "%migration-notebook-command-title%",
"category": "%migration-command-category%" "category": "%migration-command-category%"
}, },
{ {
"command": "sqlmigration.cutover", "command": "sqlmigration.cutover",
"title": "%complete-cutover-menu%", "title": "%complete-cutover-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
}, },
{ {
"command": "sqlmigration.view.database", "command": "sqlmigration.view.database",
"title": "%database-details-menu%", "title": "%database-details-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
}, },
{ {
"command": "sqlmigration.view.target", "command": "sqlmigration.view.target",
"title": "%view-target-menu%", "title": "%view-target-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
}, },
{ {
"command": "sqlmigration.view.service", "command": "sqlmigration.view.service",
"title": "%view-service-menu%", "title": "%view-service-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
}, },
{ {
"command": "sqlmigration.copy.migration", "command": "sqlmigration.copy.migration",
"title": "%copy-migration-menu%", "title": "%copy-migration-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
}, },
{ {
"command": "sqlmigration.cancel.migration", "command": "sqlmigration.cancel.migration",
"title": "%cancel-migration-menu%", "title": "%cancel-migration-menu%",
"category": "%migration-context-menu-category%" "category": "%migration-context-menu-category%"
} }
], ],
"menu": { "menu": {
"commandPalette": [ "commandPalette": [
{ {
"command": "sqlmigration.newsupportrequest", "command": "sqlmigration.newsupportrequest",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.sendfeedback", "command": "sqlmigration.sendfeedback",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.cutover", "command": "sqlmigration.cutover",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.view.database", "command": "sqlmigration.view.database",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.view.target", "command": "sqlmigration.view.target",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.view.service", "command": "sqlmigration.view.service",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.copy.migration", "command": "sqlmigration.copy.migration",
"when": "false" "when": "false"
}, },
{ {
"command": "sqlmigration.cancel.migration", "command": "sqlmigration.cancel.migration",
"when": "false" "when": "false"
} }
] ]
}, },
"dashboard.tabs": [ "dashboard.tabs": [
{ {
"id": "migration-dashboard", "id": "migration-dashboard",
"description": "%migration-dashboard-title%", "description": "%migration-dashboard-title%",
"provider": "MSSQL", "provider": "MSSQL",
"title": "%migration-dashboard-title%", "title": "%migration-dashboard-title%",
"icon": { "icon": {
"light": "./images/migration.svg", "light": "./images/migration.svg",
"dark": "./images/migration.svg" "dark": "./images/migration.svg"
}, },
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud && mssql:engineedition != 8", "when": "connectionProvider == 'MSSQL' && !mssql:iscloud && mssql:engineedition != 8",
"container": { "container": {
"grid-container": [ "grid-container": [
{ {
"name": "", "name": "",
"row": 0, "row": 0,
"col": 0, "col": 0,
"widget": { "widget": {
"tasks-widget": [ "tasks-widget": [
"sqlmigration.start", "sqlmigration.start",
"sqlmigration.newsupportrequest", "sqlmigration.newsupportrequest",
"sqlmigration.sendfeedback" "sqlmigration.sendfeedback"
] ]
} }
}, },
{ {
"name": "", "name": "",
"row": 0, "row": 0,
"col": 1, "col": 1,
"rowspan": 2.5, "rowspan": 2.5,
"colspan": 3.5, "colspan": 3.5,
"widget": { "widget": {
"modelview": { "modelview": {
"id": "migration.dashboard" "id": "migration.dashboard"
} }
} }
} }
] ]
} }
} }
] ]
}, },
"dependencies": { "dependencies": {
"@microsoft/ads-extension-telemetry": "^1.1.3", "@microsoft/ads-extension-telemetry": "^1.1.3",
"uuid": "^8.3.2", "uuid": "^8.3.2",
"vscode-nls": "^4.1.2" "vscode-nls": "^4.1.2"
}, },
"__metadata": { "__metadata": {
"publisherDisplayName": "Microsoft", "publisherDisplayName": "Microsoft",
"publisherId": "Microsoft" "publisherId": "Microsoft",
}, "id": "81"
"devDependencies": { },
"@types/uuid": "^8.3.1" "devDependencies": {
} "@types/uuid": "^8.3.1"
} }
}