mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
* ADS Windows support extension with LaunchSsmsDialog command * Update readme * Fix spacing * Update download with new file location and name * Update SsmsMin package with bits from latest RC build and addressed some comments. * Update extension name. Add Context menu extension for launching server properties dialog. Remove params interface from public API * Rename folder and update README * Correct README title * Fix a few issues and clean up some stuff. * Update to azdata namespace * Refactor to use async/await and add some more telemetry * Add .bat for running extension tests (currently only Notebook) and set up launch.json with 2 new launch configs for running & debugging extension tests. * Rename files to make it clear these aren't the integration tests * Update launch.config too * Fix spacing and missed file name update * Fix some bugs in buildSsmsMinCommandArgs and add unit tests
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "admin-tool-ext-win",
|
|
"displayName": "Database Admin Tool Extensions for Windows",
|
|
"description": "Adds additional Windows-specific functionality to Azure Data Studio",
|
|
"version": "0.0.1",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
|
|
"engines": {
|
|
"vscode": "^1.30.1",
|
|
"sqlops": "*"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "adminToolExtWin.launchSsmsServerPropertiesDialog",
|
|
"title": "%adminToolExtWin.launchSsmsServerPropertiesDialog%",
|
|
"category": "AdminToolExtWin"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "adminToolExtWin.launchSsmsServerPropertiesDialog",
|
|
"when": "false"
|
|
}
|
|
],
|
|
"objectExplorer/item/context": [
|
|
{
|
|
"command": "adminToolExtWin.launchSsmsServerPropertiesDialog",
|
|
"when": "isWindows && connectionProvider == MSSQL && nodeType && nodeType == Server",
|
|
"group": "AdminToolExtWin"
|
|
}
|
|
]
|
|
},
|
|
"outputChannels": [
|
|
"admin-tool-ext-win"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"service-downloader": "github:anthonydresser/service-downloader#0.1.5",
|
|
"shelljs": "^0.7.5",
|
|
"vscode-extension-telemetry": "^0.0.15",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"vscode": "1.0.1"
|
|
}
|
|
}
|