mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Assessment core extension (#10154)
This commit is contained in:
43
extensions/sql-assessment/package.json
Normal file
43
extensions/sql-assessment/package.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "sql-assessment",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "0.1.0",
|
||||
"publisher": "Microsoft",
|
||||
"preview": true,
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
"icon": "images/extension.png",
|
||||
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
||||
"engines": {
|
||||
"vscode": "^1.25.0",
|
||||
"azdata": ">=1.18.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"onDashboardOpen"
|
||||
],
|
||||
"main": "./out/main",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"Microsoft.mssql"
|
||||
],
|
||||
"contributes": {
|
||||
"dashboard.tabs": [{
|
||||
"id": "data-management-asmt",
|
||||
"description": "%dashboard.tabName%",
|
||||
"provider": "MSSQL",
|
||||
"title": "%displayName%",
|
||||
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud && mssql:engineedition != 11",
|
||||
"container": {
|
||||
"controlhost-container": {
|
||||
"type": "assessment"
|
||||
}
|
||||
}
|
||||
}]
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-nls": "^3.2.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user