mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
* Moved dacfx wizard into separate extension * updating to use azdata * one more azdata change * bump import extension version * renaming extension to dacpac
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "dacpac",
|
|
"displayName": "SQL Server Dacpac",
|
|
"description": "SQL Server Dacpac for Azure Data Studio.",
|
|
"version": "0.1.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"sqlops": "*"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"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",
|
|
"group": "export"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"htmlparser2": "^3.10.1",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"devDependencies": {}
|
|
}
|