Files
azuredatastudio/extensions/sql-migration/package.json
Amir Omidi f56e09cfa1 Splits the work of the assessment dialog into smaller managable chunks (#12172)
* Splits the work of the assessment dialog into smaller managable chunks

* Use the new assessment dialog page
2020-09-08 17:22:23 -07:00

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"
}
}