mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 09:35:37 -05:00
Add datavirtualization extension (#21594)
* initial * cleanup * Add typings ref * fix compile * remove unused * add missing * another unused * Use newer vscodetestcover * newer dataprotocol * format * cleanup ignores * fix out path * fix entry point * more cleanup * Move into src folder * Handle service client log messages * remove unused
This commit is contained in:
119
extensions/datavirtualization/package.json
Normal file
119
extensions/datavirtualization/package.json
Normal file
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"name": "datavirtualization",
|
||||
"displayName": "%title.datavirtualization%",
|
||||
"description": "%config.extensionDescription%",
|
||||
"version": "1.13.0",
|
||||
"publisher": "Microsoft",
|
||||
"icon": "resources/extension.png",
|
||||
"aiKey": "29a207bb14f84905966a8f22524cb730-25407f35-11b6-4d4e-8114-ab9e843cb52f-7380",
|
||||
"engines": {
|
||||
"vscode": "^1.48.0",
|
||||
"azdata": "^1.22.0"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"main": "./out/extension",
|
||||
"capabilities": {
|
||||
"virtualWorkspaces": false,
|
||||
"untrustedWorkspaces": {
|
||||
"supported": true
|
||||
}
|
||||
},
|
||||
"contributes": {
|
||||
"configuration": [
|
||||
{
|
||||
"type": "object",
|
||||
"title": "%title.datavirtualization%",
|
||||
"properties": {
|
||||
"dataManagement.logDebugInfo": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%config.logDebugInfo%"
|
||||
},
|
||||
"dataManagement.proseParsingMaxLines": {
|
||||
"type": "number",
|
||||
"default": 10000,
|
||||
"description": "%config.proseParsingMaxLines%"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
"command": "virtualizedatawizard.task.open",
|
||||
"title": "%title.openVirtualizeDataWizard%",
|
||||
"icon": {
|
||||
"dark": "resources/dark/polybase_inverse.svg",
|
||||
"light": "resources/light/polybase.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "virtualizedatawizard.cmd.open",
|
||||
"title": "%title.openVirtualizeDataWizard%",
|
||||
"icon": {
|
||||
"dark": "resources/dark/polybase_inverse.svg",
|
||||
"light": "resources/light/polybase.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mssqlHdfsTableWizard.cmd.open",
|
||||
"title": "%title.openMssqlHdfsTableWizard%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "virtualizedatawizard.cmd.open",
|
||||
"when": "wizardservice:enabled"
|
||||
},
|
||||
{
|
||||
"command": "virtualizedatawizard.task.open",
|
||||
"when": "false"
|
||||
},
|
||||
{
|
||||
"command": "mssqlHdfsTableWizard.cmd.open",
|
||||
"when": "false"
|
||||
}
|
||||
],
|
||||
"objectExplorer/item/context": [
|
||||
{
|
||||
"command": "virtualizedatawizard.cmd.open",
|
||||
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && serverMajorVersion >= 15",
|
||||
"group": "1data@1"
|
||||
},
|
||||
{
|
||||
"command": "mssqlHdfsTableWizard.cmd.open",
|
||||
"when": "nodeType =~ /(mssqlCluster:file|mssqlCluster:folder)/",
|
||||
"group": "1ads@1"
|
||||
}
|
||||
],
|
||||
"dashboard/toolbar": [
|
||||
{
|
||||
"command": "virtualizedatawizard.task.open",
|
||||
"when": "connectionProvider == 'MSSQL' && mssql:servermajorversion >= 15"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/ads-extension-telemetry": "^1.3.2",
|
||||
"@microsoft/ads-service-downloader": "^1.0.4",
|
||||
"dataprotocol-client": "github:Microsoft/sqlops-dataprotocolclient#1.3.2",
|
||||
"vscode-nls": "^5.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/vscodetestcover": "^1.2.1",
|
||||
"mocha": "^7.1.1",
|
||||
"should": "^13.2.1",
|
||||
"typemoq": "^2.1.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user