Microsoft.SqlServer.Dacpacs.Master 170.0.4

Prefix Reserved
dotnet add package Microsoft.SqlServer.Dacpacs.Master --version 170.0.4
                    
NuGet\Install-Package Microsoft.SqlServer.Dacpacs.Master -Version 170.0.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.SqlServer.Dacpacs.Master" Version="170.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.SqlServer.Dacpacs.Master" Version="170.0.4" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.SqlServer.Dacpacs.Master" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.SqlServer.Dacpacs.Master --version 170.0.4
                    
#r "nuget: Microsoft.SqlServer.Dacpacs.Master, 170.0.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.SqlServer.Dacpacs.Master@170.0.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.SqlServer.Dacpacs.Master&version=170.0.4
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.SqlServer.Dacpacs.Master&version=170.0.4
                    
Install as a Cake Tool

Microsoft.SqlServer.Dacpacs.Master contains a .dacpac file for the SQL Server system objects. Referencing this package in a SQL database project allows you to build and validate database projects with system object references that target SQL Server.

📗 SQL projects database DevOps documentation

🧑‍💻 Get help and support

Usage

The reference to this package can be added to your SQL database project (.sqlproj) as follows:

...
  <ItemGroup>
    <PackageReference Include="Microsoft.SqlServer.Dacpacs.Master" Version="170.0.4" />
  </ItemGroup>
</Project>

An example of a SQL Server system object referenced in a SQL database project is shown below:

CREATE PROCEDURE dbo.usp_GetDatabaseProperties
    @database_name SYSNAME
AS
BEGIN
    SET NOCOUNT ON;
    SELECT
        [database_id],
        [name],
        [create_date],
        [collation_name],
        [containment],
        [is_change_feed_enabled], -- 160 and above
        [is_optimized_locking_on] -- 170 and above
    FROM sys.databases
    WHERE name = @database_name;
END;
Package Target platforms Description
Microsoft.SqlServer.Dacpacs.Azure.Master Azure SQL Database Microsoft.SqlServer.Dacpacs.Azure.Master is a NuGet package containing a .dacpac file for the Azure SQL Database master database.
Microsoft.SqlServer.Dacpacs.DbFabric SQL database in Fabric Microsoft.SqlServer.Dacpacs.DbFabric is a NuGet package containing a .dacpac file for the SQL database in Fabric system objects.
Microsoft.SqlServer.Dacpacs.FabricDw Data warehouse in Fabric Microsoft.SqlServer.Dacpacs.FabricDw is a NuGet package containing a .dacpac file for the Data warehouse in Fabric system objects.
Microsoft.SqlServer.Dacpacs.Msdb SQL Server Microsoft.SqlServer.Dacpacs.Msdb is a set of NuGet packages containing .dacpac files for Microsoft SQL Server msdb databases.
Microsoft.SqlServer.Dacpacs.Synapse.Master Azure Synapse Analytics Microsoft.SqlServer.Dacpacs.Synapse.Master is a NuGet package containing a .dacpac file for the Azure Synapse Analytics master database.
Microsoft.SqlServer.Dacpacs.SynapseServerless.Master Azure Synapse Analytics serverless pools Microsoft.SqlServer.Dacpacs.SynapseServerless.Master is a NuGet package containing a .dacpac file for the Azure Synapse Analytics serverless SQL pools master database.
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETFramework 4.7.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Microsoft.SqlServer.Dacpacs.Master:

Package Downloads
Ark.Reference.Core.Database

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Microsoft.SqlServer.Dacpacs.Master:

Repository Stars
rr-wfm/MSBuild.Sdk.SqlProj
An MSBuild SDK that provides similar functionality to SQL Server Data Tools (.sqlproj) projects
Version Downloads Last Updated
170.0.4 990 6/3/2026
170.0.3 24,144 2/10/2026
170.0.2 12,929 10/14/2025
170.0.1 1,262 7/30/2025
170.0.0 8,763 4/15/2025
160.2.8 323 6/3/2026
160.2.7 9,680 2/10/2026
160.2.6 15,265 10/14/2025
160.2.5 5,434 7/30/2025
160.2.4 6,090 4/15/2025
160.2.3 30,776 11/21/2024
160.2.2 35,110 9/20/2024
150.1.2 34,359 11/21/2024
150.1.1 19,168 3/1/2024
140.0.4 1,682 7/30/2025
140.0.3 618 4/15/2025
140.0.2 2,936 11/21/2024
140.0.1 7,648 3/1/2024
130.0.2 3,688 11/21/2024
130.0.1 1,208 3/1/2024
Loading failed