mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
111 lines
3.1 KiB
JSON
111 lines
3.1 KiB
JSON
{
|
|
"name": "dacpac",
|
|
"displayName": "SQL Server Dacpac",
|
|
"description": "SQL Server Dacpac for Azure Data Studio.",
|
|
"version": "1.9.0",
|
|
"publisher": "Microsoft",
|
|
"preview": false,
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"azdata": ">=1.15.0"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
|
"activationEvents": [
|
|
"onCommand:dacFx.start"
|
|
],
|
|
"main": "./out/extension",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"configuration": [
|
|
{
|
|
"title": "%dacFx.settings%",
|
|
"properties": {
|
|
"dacFx.defaultSaveLocation": {
|
|
"type": "string",
|
|
"description": "%dacFx.defaultSaveLocation%"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "dacFx.start",
|
|
"title": "Data-tier Application wizard",
|
|
"category": "Data-tier Application"
|
|
}
|
|
],
|
|
"menus": {
|
|
"objectExplorer/item/context": [
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && mssql:engineedition != 11",
|
|
"group": "export"
|
|
},
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Server && mssql:engineedition != 11",
|
|
"group": "export"
|
|
},
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Folder && nodeLabel == 'Databases' && mssql:engineedition != 11",
|
|
"group": "export"
|
|
}
|
|
],
|
|
"dataExplorer/context": [
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && mssql:engineedition != 11",
|
|
"group": "export"
|
|
},
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Server && mssql:engineedition != 11",
|
|
"group": "export"
|
|
},
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Folder && nodeLabel == 'Databases' && mssql:engineedition != 11",
|
|
"group": "export"
|
|
}
|
|
],
|
|
"commandPalette": [
|
|
{
|
|
"command": "dacFx.start",
|
|
"when": "mssql:engineedition != 11"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/ads-extension-telemetry": "^1.1.3",
|
|
"htmlparser2": "^3.10.1",
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^12.11.7",
|
|
"@types/sinon": "^9.0.4",
|
|
"mocha": "^5.2.0",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"should": "^13.2.3",
|
|
"sinon": "^9.0.2",
|
|
"typemoq": "^2.1.0",
|
|
"vscodetestcover": "^1.1.0"
|
|
},
|
|
"__metadata": {
|
|
"id": "33",
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|