mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Sql on demand changes * Formating files * Removing features for new Engine Edition * Fixing Restore & Backup issue. Adding support for multiple conditions per flavor * tabifying * Formating documents * Work in progress * Resolving comments * Resolving comments. * Fixing typo
72 lines
1.9 KiB
JSON
72 lines
1.9 KiB
JSON
{
|
|
"name": "dacpac",
|
|
"displayName": "SQL Server Dacpac",
|
|
"description": "SQL Server Dacpac for Azure Data Studio.",
|
|
"version": "0.8.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"azdata": "*"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916",
|
|
"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 && 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"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"htmlparser2": "^3.10.1",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.5",
|
|
"mocha": "^5.2.0",
|
|
"should": "^13.2.1",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"vscode": "^1.1.26"
|
|
},
|
|
"__metadata": {
|
|
"id": "33",
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|