mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
* Splits the work of the assessment dialog into smaller managable chunks * Use the new assessment dialog page
48 lines
1.1 KiB
JSON
48 lines
1.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": [
|
|
"onCommand:sqlmigration.start",
|
|
"onCommand:sqlmigration.testDialog"
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"__metadata": {
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|