MSBuild.Sdk.SqlProj.Aspire 8.1.0-preview-0006-gf03438655c

Suggested Alternatives

CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects

Additional Details

Aspire integration for SQL Server Database Projects has moved to the CommunityToolkit

This is a prerelease version of MSBuild.Sdk.SqlProj.Aspire.
dotnet add package MSBuild.Sdk.SqlProj.Aspire --version 8.1.0-preview-0006-gf03438655c                
NuGet\Install-Package MSBuild.Sdk.SqlProj.Aspire -Version 8.1.0-preview-0006-gf03438655c                
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="MSBuild.Sdk.SqlProj.Aspire" Version="8.1.0-preview-0006-gf03438655c" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MSBuild.Sdk.SqlProj.Aspire --version 8.1.0-preview-0006-gf03438655c                
#r "nuget: MSBuild.Sdk.SqlProj.Aspire, 8.1.0-preview-0006-gf03438655c"                
#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.
// Install MSBuild.Sdk.SqlProj.Aspire as a Cake Addin
#addin nuget:?package=MSBuild.Sdk.SqlProj.Aspire&version=8.1.0-preview-0006-gf03438655c&prerelease

// Install MSBuild.Sdk.SqlProj.Aspire as a Cake Tool
#tool nuget:?package=MSBuild.Sdk.SqlProj.Aspire&version=8.1.0-preview-0006-gf03438655c&prerelease                

MSBuild.Sdk.SqlProj.Aspire

This package provides .NET Aspire integration for MSBuild.Sdk.SqlPproj projects. It allows you to publish SQL Database Projects as part of your .NET Aspire AppHost projects.

Usage

To use this package, install it into your .NET Aspire AppHost project:

dotnet add package MSBuild.Sdk.SqlProj.Aspire

Next, add a reference to the MSBuild.Sdk.SqlProj project you want to publish in your .NET Aspire AppHost project:

dotnet add reference ../MySqlProj/MySqlProj.csproj

Note: Adding this referene will currently result in warning ASPIRE004. This is a known issue and will be resolved in a future release.

Finally add the project as a resource to your .NET Aspire AppHost:

var builder = DistributedApplication.CreateBuilder(args);

var sql = builder.AddSqlServer("sql")
                 .AddDatabase("test");

builder.AddSqlProject<Projects.MySqlProj>("mysqlproj")
       .PublishTo(sql);

builder.Build().Run();

Now when you run your .NET Aspire AppHost project you will see the SQL Database Project being published to the specified SQL Server.

Local .dacpac file support

If you are sourcing your .dacpac file from somewhere other than a project reference, you can also specify the path to the .dacpac file directly:

var builder = DistributedApplication.CreateBuilder(args);

var sql = builder.AddSqlServer("sql")
                 .AddDatabase("test");

builder.AddSqlProject("mysqlproj")
       .FromDacpac("path/to/mysqlproj.dacpac")
       .PublishTo(sql);

builder.Build().Run();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.