SQL Database Projects extension (Preview)
The SQL Database Projects extension (preview) is an Azure Data Studio and VS Code extension for developing SQL databases in a project-based development environment. A SQL project is a local representation of SQL objects that comprise a single database's schema, such as tables, stored procedures, or functions.
Extension features
- Create a new blank project.
- Create a new project from a connected database or from an OpenAPI specification file.
- Open a Project previously created in Azure Data Studio, VS Code or in SQL Server Data Tools.
- Edit project by adding or removing objects (tables, views, stored procedures) or custom scripts in the project.
- Organize files/scripts in folders.
- Add references to system databases or user dacpac.
- Build single project.
- Deploy single project.
- Load connection details (SQL Windows authentication) and SQLCMD variables from deployment profile.
Watch this short 10-minute video for an introduction to the SQL Database Projects extension in Azure Data Studio:
Installation
Azure Data Studio
Open the extensions manager to access the available extensions. To do so, either select the extensions icon or select Extensions in the View menu.
Identify the SQL Database Projects extension by typing all or part of the name in the extension search box. Select an available extension to view its details.

Select the extension you want and Install it.
Select Reload to enable the extension (only required the first time you install an extension).
Select the Projects icon from the activity bar.
Note
The .NET Core SDK is required for project build functionality and you will be prompted to install the .NET Core SDK if it cannot be detected by the extension. The .NET Core SDK (v3.1 or higher) can be downloaded and installed from https://dotnet.microsoft.com/download/dotnet-core/3.1.
Note
It is recommended to install the Schema Compare extension alongside the SQL Database Projects extension for full functionality.
VS Code
The SQL Database Projects extension is installed with the mssql extension for VS Code.
Dependencies
.NET Core SDK
The .NET Core SDK is required for project build functionality and you will be prompted to install the .NET Core SDK if it cannot be detected by the extension. The .NET Core SDK (v3.1.x) can be downloaded and installed from https://dotnet.microsoft.com/download/dotnet-core/3.1. If you would like to check currently installed versions of the dotnet SDK, open a terminal and run the following command.
dotnet --list-sdks
To force the SQL Database Projects extension to use the v3.1.x version of the .NET Core SDK when multiple versions are installed, add a package.json file to a containing folder for the SQL project.
Unsupported .NET Core SDK versions may result in error messages such as:
error MSB4018: The "SqlBuildTask" task failed unexpectedly.error MSB4018: System.TypeInitializationException: The type initializer for 'SqlSchemaModelStaticState' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. [c:\Users\ .sqlproj]_(where the linked non-existing file has an unmatched closing square bracket)
AutoRest.Sql
The SQL extension for AutoRest is automatically downloaded and used by the SQL Database Projects extension when a SQL project is generated from an OpenAPI specification file.
Known limitations
- Loading files as link is not supported in Azure Data Studio view today, however the files will be loaded at the top level in tree and build will incorporate these files as expected.
- SQLCLR objects in project are not supported in .NET Core version of DacFx.
- Tasks (build/publish) are not user-defined.
- Publish targets defined by DacFx.
- WSL environment support is limited.
Workspace
SQL database projects are contained within a logical workspace in Azure Data Studio and VS Code. A workspace manages the folder(s) visible in the Explorer pane. All SQL projects within the folders open in the current workspace are available in the SQL Database Projects view by default. Manually adding and removing projects from a workspace can be accomplished through the interface in the Projects pane. However, the settings for a workspace can be manually edited in the .code-workspace file if necessary.
In the example .code-workspace file below, the folders array lists all folders included in the Explorer pane and the dataworkspace.excludedProjects array within settings lists all the SQL projects included in the Projects pane.
{
"folders": [
{
"path": "."
},
{
"name": "WideWorldImportersDW",
"path": "..\\WideWorldImportersDW"
}
],
"settings": {
"dataworkspace.excludedProjects": [
"AdventureWorksLT.sqlproj"
]
}
}