Files
azuredatastudio/extensions/sql-migration/package.json
Aasim Khan 339d908d1d Adding windows auth support to sql-migration and misc bug fixes. (#14816)
* - Added coming soon message for learn more.
- Potential fix for learn more message

* Renaming of controller to sqlMigrationService

* Surfacing some errors
-Azure account is stale error
-Migration Service creation error.

* Adding refresh azure token validation.

* Fixing some errors pointed during PR
-Fixing property names
-Fixing count

* Fixing migration status
- Adding special error handling for resource not found error
- Deleting unfound migrations from local cache
- Using prefetched migration status for view all

Misc fixes:
- Using SQL server version name instead of number
- Fixing Icons on sku recommendation page
- Fixing table column width in cutover dialog
- Adding spinner button to refresh.

* Fixing all strings in migration service page and dialog

* fixed a string error in create service dialog

* Adding source config page to migration to support windows auth
Some refactorings for sqlDatabaseTree (still WIP)

* refactoring assessments code 1
introducing new interface for server assessments

* Filtering out non windows sql vms
Retaining selections made by user on assessments dialog

* Fix compile errors on sqlDatabaseTree

* Exposing migration status errors in cutover dialog

* Updating extension verion

* Correcting typos
Fixing compilation erros
Removing en-us from url
Fixing function names
Make UI calls unblocking

* Unblocking dialog in case of failed assessments
Localizing string
removing blocking code from UI
Fixing comments

* Fixed broken assessment page logic
2021-03-23 07:48:26 -07:00

78 lines
1.9 KiB
JSON

{
"name": "sql-migration",
"displayName": "%displayName%",
"description": "%description%",
"version": "0.0.4",
"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": "SQL Migration Start",
"category": "SQL Migration"
},
{
"command": "sqlmigration.openNotebooks",
"title": "%migration-notebook-command-title%",
"category": "SQL Migration"
}
],
"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": 1,
"rowspan": 2.5,
"colspan": 3.5,
"widget": {
"modelview": {
"id": "migration.dashboard"
}
}
}
]
}
}
]
},
"dependencies": {
"vscode-nls": "^3.2.1"
},
"__metadata": {
"publisherDisplayName": "Microsoft",
"publisherId": "Microsoft"
}
}