Adding notebooks to migration extension (#14189)

* Adding migration notebooks to extension

* Adding toast notification instead of printing error in the console

* removed localization info from the links in the notebook

* Removed localization info from the links 2

* Fixed comments, placeholder and letter cases.
This commit is contained in:
Aasim Khan
2021-02-09 08:07:30 -08:00
committed by GitHub
parent a3cddbc8aa
commit b2eb0e6958
7 changed files with 1104 additions and 2 deletions

View File

@@ -13,7 +13,8 @@
},
"activationEvents": [
"onCommand:sqlmigration.start",
"onCommand:sqlmigration.testDialog"
"onCommand:sqlmigration.testDialog",
"onCommand:sqlmigration.openNotebooks"
],
"main": "./out/main",
"repository": {
@@ -34,6 +35,11 @@
"command": "sqlmigration.testDialog",
"title": "SQL Migration test dialog",
"category": "SQL Migration"
},
{
"command": "sqlmigration.openNotebooks",
"title": "%migration-notebook-command-title%",
"category": "SQL Migration"
}
]
},