CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects 9.3.1-beta.252

Prefix Reserved
This is a prerelease version of CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects --version 9.3.1-beta.252
                    
NuGet\Install-Package CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects -Version 9.3.1-beta.252
                    
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="CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects" Version="9.3.1-beta.252" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects" Version="9.3.1-beta.252" />
                    
Directory.Packages.props
<PackageReference Include="CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects" />
                    
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 CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects --version 9.3.1-beta.252
                    
#r "nuget: CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects, 9.3.1-beta.252"
                    
#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.
#addin nuget:?package=CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects&version=9.3.1-beta.252&prerelease
                    
Install CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects as a Cake Addin
#tool nuget:?package=CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects&version=9.3.1-beta.252&prerelease
                    
Install CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects as a Cake Tool

CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects library

This package provides .NET Aspire integration for SQL Server Database Projects. It allows you to publish SQL Database Projects as part of your .NET Aspire AppHost projects. It currently works with both MSBuild.Sdk.SqlProj and Microsoft.Build.Sql (aka .sqlprojx) based projects.

Usage

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

dotnet add package CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects

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

dotnet add reference ../MySqlProj/MySqlProj.csproj

Note: Adding this reference 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")
       .WithReference(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")
       .WithDacpac("path/to/mysqlproj.dacpac")
       .WithReference(sql);

builder.Build().Run();

Support for existing SQL Server

Instead of using the AddSqlServer method to use a SQL Server container, you can specify a connection string to an existing server:

var builder = DistributedApplication.CreateBuilder(args);

// Get an existing connection string from the configuration
var connection = builder.AddConnectionString("Aspire");

builder.AddSqlProject<Projects.SdkProject>("mysqlproj")
       .WithReference(connection);

builder.Build().Run();

Deployment options support

Define options that affect the behavior of package deployment.

var builder = DistributedApplication.CreateBuilder(args);

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

builder.AddSqlProject("mysqlproj")
       .WithConfigureDacDeployOptions(options => options.IncludeCompositeObjects = true)
       .WithReference(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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.

Version Downloads Last updated
9.3.1-beta.253 35 3 days ago
9.3.1-beta.252 145 8 days ago
9.3.1-beta.250 88 8 days ago
9.3.1-beta.249 82 8 days ago
9.3.1-beta.248 89 8 days ago
9.3.1-beta.247 92 8 days ago
9.3.1-beta.244 432 10 days ago
9.3.1-beta.242 428 10 days ago
9.3.1-beta.241 113 16 days ago
9.3.0 391 16 days ago
9.3.0-beta.239 104 16 days ago
9.2.2-beta.237 105 16 days ago
9.2.2-beta.236 80 21 days ago
9.2.2-beta.230 112 22 days ago
9.2.2-beta.229 105 22 days ago
9.2.2-beta.228 127 24 days ago
9.2.2-beta.227 111 24 days ago
9.2.2-beta.226 120 24 days ago
9.2.2-beta.225 109 24 days ago
9.2.2-beta.224 114 24 days ago
9.2.2-beta.223 121 24 days ago
9.2.2-beta.222 128 24 days ago
9.2.2-beta.220 117 25 days ago
9.2.2-beta.218 117 25 days ago
9.2.2-beta.217 161 a month ago
9.2.2-beta.216 160 a month ago
9.2.2-beta.215 162 a month ago
9.2.2-beta.214 157 a month ago
9.2.2-beta.213 152 a month ago
9.2.2-beta.212 149 a month ago
9.2.2-beta.211 160 a month ago
9.2.2-beta.210 154 a month ago
9.2.2-beta.208 55 a month ago
9.2.1 929 a month ago
9.2.1-beta.207 88 a month ago
9.2.1-beta.206 50 a month ago
9.2.1-beta.205 52 a month ago
9.2.1-beta.204 51 a month ago
9.2.1-beta.203 46 a month ago
9.2.0 639 a month ago
9.2.0-beta.202 48 a month ago
9.2.0-beta.201 52 a month ago
9.2.0-beta.199 45 a month ago
9.2.0-beta.198 41 a month ago
9.1.1-beta.197 63 a month ago
9.1.1-beta.196 48 a month ago
9.1.1-beta.195 50 a month ago
9.1.1-beta.194 48 a month ago
9.1.1-beta.193 46 a month ago
9.1.1-beta.192 52 a month ago
9.1.1-beta.191 61 a month ago
9.1.1-beta.190 56 a month ago
9.1.1-beta.189 51 a month ago
9.1.1-beta.188 54 a month ago
9.1.1-beta.187 58 2 months ago
9.1.1-beta.183 62 2 months ago
9.1.1-beta.182 61 2 months ago
9.1.1-beta.181 65 2 months ago
9.1.1-beta.180 54 2 months ago
9.1.1-beta.178 47 2 months ago
9.1.1-beta.177 65 2 months ago
9.1.1-beta.176 76 2 months ago
9.1.1-beta.175 63 2 months ago
9.1.1-beta.173 62 2 months ago
9.1.1-beta.169 54 2 months ago
9.1.1-beta.168 49 2 months ago
9.1.1-beta.166 106 2 months ago
9.1.1-beta.165 43 2 months ago
9.1.1-beta.164 54 2 months ago
9.1.1-beta.162 51 2 months ago
9.1.1-beta.155 50 2 months ago
9.1.1-beta.154 53 2 months ago
9.1.1-beta.153 46 2 months ago
9.1.1-beta.152 43 2 months ago
9.1.1-beta.150 54 2 months ago
9.1.1-beta.148 57 2 months ago
9.1.1-beta.147 47 2 months ago
9.1.1-beta.146 50 2 months ago
9.1.1-beta.145 47 2 months ago
9.1.1-beta.144 46 2 months ago
9.1.1-beta.142 45 2 months ago
9.1.1-beta.140 46 2 months ago
9.1.1-beta.139 46 2 months ago
9.1.1-beta.138 43 2 months ago
9.1.1-beta.137 44 3 months ago
9.1.1-beta.136 39 3 months ago
9.1.1-beta.135 19 3 months ago
9.1.1-beta.134 18 3 months ago
9.1.1-beta.128 36 3 months ago
9.1.1-beta.127 35 3 months ago
9.1.1-beta.126 42 3 months ago
9.1.1-beta.125 50 3 months ago
9.1.1-beta.124 42 3 months ago
9.1.0 2,520 4 months ago
9.1.0-beta.123 58 3 months ago
9.1.0-beta.122 58 3 months ago
9.1.0-beta.121 54 3 months ago
9.1.0-beta.120 53 3 months ago
9.1.0-beta.119 49 3 months ago
9.1.0-beta.118 53 3 months ago
9.1.0-beta.116 53 3 months ago
9.1.0-beta.114 50 3 months ago
9.1.0-beta.113 51 3 months ago
9.1.0-beta.112 51 4 months ago
9.1.0-beta.110 57 4 months ago
9.1.0-beta.109 51 4 months ago
9.0.1-beta.108 61 4 months ago
9.0.1-beta.107 56 4 months ago
9.0.1-beta.106 54 4 months ago
9.0.1-beta.104 54 4 months ago
9.0.1-beta.102 54 4 months ago
9.0.1-beta.99 56 4 months ago
9.0.1-beta.98 53 4 months ago
9.0.1-beta.95 56 4 months ago
9.0.1-beta.94 54 4 months ago
9.0.1-beta.93 49 4 months ago
9.0.1-beta.92 149 4 months ago
9.0.1-beta.91 47 4 months ago
9.0.1-beta.90 54 4 months ago
9.0.1-beta.89 55 4 months ago
9.0.1-beta.88 54 4 months ago
9.0.1-beta.87 46 4 months ago
9.0.1-beta.86 54 4 months ago
9.0.1-beta.84 58 4 months ago
9.0.1-beta.83 58 4 months ago
9.0.1-beta.82 58 4 months ago
9.0.1-beta.81 47 5 months ago
9.0.1-beta.80 41 5 months ago
9.0.1-beta.79 49 5 months ago
9.0.1-beta.77 48 5 months ago
9.0.0 571 5 months ago
9.0.0-beta.76 52 5 months ago
9.0.0-beta.75 46 5 months ago
9.0.0-beta.74 51 5 months ago
9.0.0-beta.73 180 5 months ago
9.0.0-beta.72 50 5 months ago
9.0.0-beta.71 52 5 months ago
9.0.0-beta.70 107 5 months ago
9.0.0-beta.69 57 5 months ago
9.0.0-beta.68 57 5 months ago
9.0.0-beta.67 52 5 months ago
9.0.0-beta.66 89 5 months ago
9.0.0-beta.63 62 5 months ago