diff --git a/extensions/admin-pack/README.md b/extensions/admin-pack/README.md index f85c88ad08..4244507079 100644 --- a/extensions/admin-pack/README.md +++ b/extensions/admin-pack/README.md @@ -2,16 +2,17 @@ Admin Pack for SQL Server is a collection of popular database administration extensions to help you manage SQL Server. When you download this pack, you will download the following extensions: -- [SQL Server Agent](https://docs.microsoft.com/en-us/sql/azure-data-studio/sql-server-agent-extension?view=sql-server-2017) +- [SQL Server Agent](https://docs.microsoft.com/sql/azure-data-studio/sql-server-agent-extension?view=sql-server-2017) - List SQL Server Agent Jobs configured on a SQL Server - View Job History with job execution results - Basic Job Control to start and stop jobs -- [SQL Server Profiler](https://docs.microsoft.com/en-us/sql/azure-data-studio/sql-server-profiler-extension?view=sql-server-2017) +- [SQL Server Profiler](https://docs.microsoft.com/sql/azure-data-studio/sql-server-profiler-extension?view=sql-server-2017) - Browse through extended events and view associated T-SQL - View and manage sessions - Filter search of events -- [SQL Server Import](https://docs.microsoft.com/en-us/sql/azure-data-studio/sql-server-import-extension?view=sql-server-2017) +- [SQL Server Import](https://docs.microsoft.com/sql/azure-data-studio/sql-server-import-extension?view=sql-server-2017) - Use the Import Flat File Wizard to import .csv and .txt files to a SQL table using AI-based framework to simplify experience +- [SQL Server dacpac](https://docs.microsoft.com/sql/azure-data-studio/sql-server-dacpac-extension?view=sql-server-2017) - Use the Data-Tier Application Wizard to deploy and extract .dacpac files and import and export .bacpac files If there are extensions you feel should be added to this pack, submit a feature request on our [Github Issues](https://github.com/microsoft/azuredatastudio/issues). diff --git a/extensions/admin-pack/package.json b/extensions/admin-pack/package.json index 363eec2851..be40f9484c 100644 --- a/extensions/admin-pack/package.json +++ b/extensions/admin-pack/package.json @@ -2,7 +2,7 @@ "name": "admin-pack", "displayName": "Admin Pack for SQL Server", "description": "", - "version": "0.0.1", + "version": "0.0.2", "publisher": "Microsoft", "engines": { "vscode": "*", @@ -11,7 +11,8 @@ "extensionPack": [ "Microsoft.agent", "Microsoft.profiler", - "Microsoft.import" + "Microsoft.import", + "Microsoft.dacpac" ], "repository": { "type": "git", diff --git a/extensions/agent/package.json b/extensions/agent/package.json index 826c73cff8..cfdcb5f272 100644 --- a/extensions/agent/package.json +++ b/extensions/agent/package.json @@ -2,7 +2,7 @@ "name": "agent", "displayName": "SQL Server Agent", "description": "Manage and troubleshoot SQL Server Agent jobs", - "version": "0.36.1", + "version": "0.37.0", "publisher": "Microsoft", "preview": true, "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt", diff --git a/extensions/profiler/package.json b/extensions/profiler/package.json index b473c4df01..7a5a258d81 100644 --- a/extensions/profiler/package.json +++ b/extensions/profiler/package.json @@ -2,7 +2,7 @@ "name": "profiler", "displayName": "SQL Server Profiler", "description": "SQL Server Profiler for Azure Data Studio", - "version": "0.6.0", + "version": "0.7.0", "publisher": "Microsoft", "preview": true, "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",