Machine Learning Services - Enabling external script for package management only (#9519)

* Machine learning services extension - removed config table and added config update to package manager
This commit is contained in:
Leila Lali
2020-03-19 16:48:33 -07:00
committed by GitHub
parent 35b27f1304
commit 1520441b84
20 changed files with 145 additions and 340 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "machineLearningServices",
"name": "machine-learning-services",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
@@ -14,7 +14,7 @@
"onDashboardOpen"
],
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
"icon": "images/ML_ExtensionIcon.png",
"icon": "images/extensionIcon.png",
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
"main": "./out/main",
"repository": {
@@ -59,7 +59,11 @@
},
{
"command": "mls.command.predictModel",
"title": "%mls.command.predictModel%"
"title": "%mls.command.predictModel%",
"icon": {
"light": "./images/makePredictions.svg",
"dark": "./images/makePredictions.svg"
}
},
{
"command": "mls.command.manageModels",
@@ -67,7 +71,11 @@
},
{
"command": "mls.command.registerModel",
"title": "%mls.command.registerModel%"
"title": "%mls.command.registerModel%",
"icon": {
"light": "./images/registerModel.svg",
"dark": "./images/registerModel.svg"
}
},
{
"command": "mls.command.manageLanguages",
@@ -95,20 +103,10 @@
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud && dashboardContext == 'server'",
"container": {
"grid-container": [
{
"name": "%title.configurations%",
"row": 0,
"col": 0,
"widget": {
"modelview": {
"id": "ml.tasks"
}
}
},
{
"name": "%title.tasks%",
"row": 0,
"col": 1,
"col": 0,
"widget": {
"tasks-widget": [
"mls.command.managePackages",
@@ -120,8 +118,8 @@
},
{
"name": "%title.documents%",
"row": 1,
"col": 0,
"row": 0,
"col": 1,
"widget": {
"tasks-widget": [
"mls.command.odbcdriver",
@@ -138,7 +136,7 @@
"request": "^2.88.0",
"vscode-nls": "^4.0.0",
"vscode-languageclient": "^5.3.0-next.1",
"@azure/arm-machinelearningservices" : "^3.0.0",
"@azure/arm-machinelearningservices": "^3.0.0",
"polly-js": "^1.6.3"
},
"devDependencies": {
@@ -153,6 +151,6 @@
"vscodetestcover": "github:corivera/vscodetestcover#1.0.5"
},
"resolutions": {
"esprima": "^4.0.0"
"esprima": "^4.0.0"
}
}