mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Update to latest vscodetestcover * Undo ci disable * Add mssql to coverage upload * Also update sh script * Add mocha reporters * Update yarn.lock * Fix merge conflict * Update * Update yarn.lock again * Fix compile errors * Try disabling test * Disable another test * Try disabling all tests * Leave one test... * Skip msssql tests again * Remove mssql coverage merge * re-disable CI
153 lines
4.2 KiB
JSON
153 lines
4.2 KiB
JSON
{
|
|
"name": "machine-learning-services",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"azdata": ">=1.13.0"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:mls.command.managePackages",
|
|
"onDashboardOpen"
|
|
],
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/extensionIcon.png",
|
|
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql",
|
|
"Microsoft.notebook"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "%mls.configuration.title%",
|
|
"properties": {
|
|
"machineLearningServices.enablePython": {
|
|
"type": "boolean",
|
|
"default": "true",
|
|
"description": "%mls.enablePython.description%"
|
|
},
|
|
"machineLearningServices.enableR": {
|
|
"type": "boolean",
|
|
"default": "false",
|
|
"description": "%mls.enableR.description%"
|
|
},
|
|
"machineLearningServices.pythonPath": {
|
|
"type": "string",
|
|
"default": "python",
|
|
"description": "%mls.pythonPath.description%"
|
|
},
|
|
"machineLearningServices.rPath": {
|
|
"type": "string",
|
|
"default": "r",
|
|
"description": "%mls.rPath.description%"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "mls.command.managePackages",
|
|
"title": "%mls.command.managePackages%",
|
|
"icon": {
|
|
"light": "./images/installPackages.svg",
|
|
"dark": "./images/installPackages.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "mls.command.predictModel",
|
|
"title": "%mls.command.predictModel%",
|
|
"icon": {
|
|
"light": "./images/makePredictions.svg",
|
|
"dark": "./images/makePredictions.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "mls.command.manageModels",
|
|
"title": "%mls.command.manageModels%"
|
|
},
|
|
{
|
|
"command": "mls.command.importModel",
|
|
"title": "%mls.command.importModel%",
|
|
"icon": {
|
|
"light": "./images/registerModel.svg",
|
|
"dark": "./images/registerModel.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "mls.command.manageLanguages",
|
|
"title": "%mls.command.manageLanguages%",
|
|
"icon": {
|
|
"light": "./images/registerRuntime.svg",
|
|
"dark": "./images/registerRuntime.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "mls.command.dependencies",
|
|
"title": "%mls.command.dependencies%"
|
|
}
|
|
],
|
|
"dashboard.tabs": [
|
|
{
|
|
"id": "mls-dashboard",
|
|
"description": "%description%",
|
|
"provider": "MSSQL",
|
|
"title": "%displayName%",
|
|
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud && dashboardContext == 'server'",
|
|
"container": {
|
|
"grid-container": [
|
|
{
|
|
"name": "%title.tasks%",
|
|
"row": 0,
|
|
"col": 0,
|
|
"widget": {
|
|
"tasks-widget": [
|
|
"mls.command.managePackages",
|
|
"mls.command.manageLanguages"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"name": "",
|
|
"row": 0,
|
|
"col": 1,
|
|
"rowspan": 3,
|
|
"colspan": 4,
|
|
"widget": {
|
|
"modelview": {
|
|
"id":"mls.dashboard"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"request": "^2.88.0",
|
|
"vscode-nls": "^4.0.0",
|
|
"vscode-languageclient": "^5.3.0-next.1",
|
|
"@azure/arm-machinelearningservices": "^3.0.0",
|
|
"polly-js": "^1.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^10.14.8",
|
|
"@types/request": "^2.48.1",
|
|
"mocha": "^5.2.0",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"should": "^13.2.1",
|
|
"typemoq": "^2.1.0",
|
|
"vscodetestcover": "github:corivera/vscodetestcover#1.0.6"
|
|
}
|
|
}
|