mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* initial changes for making a QDS report with placeholders * Add icon for configure button * Add another example report to show layout * move files * add placeholder names to components and cleanup toolbar * cleanup * switch to createViews() instead of createTop and BottomSections() * add QueryStoreView class for the different components in a report * cleanup * add more comments * fix yarn not running for query store extension folder * add missing break * change one more view to container
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "query-store",
|
|
"displayName": "%queryStore.displayName%",
|
|
"description": "%queryStore.description%",
|
|
"version": "0.1.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": ">=1.45.0"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"aiKey": "29a207bb14f84905966a8f22524cb730-25407f35-11b6-4d4e-8114-ab9e843cb52f-7380",
|
|
"activationEvents": [
|
|
"onCommand:queryStore.topResourceConsumingQueriesOpen",
|
|
"onCommand:queryStore.overallResourceConsumptionOpen"
|
|
],
|
|
"main": "./out/extension",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "queryStore.topResourceConsumingQueriesOpen",
|
|
"title": "%queryStore.topResourceConsumingQueriesOpen%",
|
|
"category": "%queryStore.category%"
|
|
},
|
|
{
|
|
"command": "queryStore.overallResourceConsumptionOpen",
|
|
"title": "%queryStore.overallResourceConsumptionOpen%",
|
|
"category": "%queryStore.category%"
|
|
}
|
|
],
|
|
"menus": {
|
|
"objectExplorer/item/context": [
|
|
],
|
|
"dataExplorer/context": [
|
|
],
|
|
"commandPalette": [
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
}
|
|
}
|