CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects
9.0.1-beta.81
Prefix Reserved
dotnet add package CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects --version 9.0.1-beta.81
NuGet\Install-Package CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects -Version 9.0.1-beta.81
<PackageReference Include="CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects" Version="9.0.1-beta.81" />
paket add CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects --version 9.0.1-beta.81
#r "nuget: CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects, 9.0.1-beta.81"
// Install CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects as a Cake Addin #addin nuget:?package=CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects&version=9.0.1-beta.81&prerelease // Install CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects as a Cake Tool #tool nuget:?package=CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects&version=9.0.1-beta.81&prerelease
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();
Product | Versions 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. |
-
net8.0
- Aspire.Hosting (>= 9.0.0)
- Aspire.Hosting.SqlServer (>= 9.0.0)
- Microsoft.Build (>= 17.11.4)
- Microsoft.Build.Locator (>= 1.7.8)
- Microsoft.SqlServer.DacFx (>= 162.4.92)
-
net9.0
- Aspire.Hosting (>= 9.0.0)
- Aspire.Hosting.SqlServer (>= 9.0.0)
- Microsoft.Build (>= 17.11.4)
- Microsoft.Build.Locator (>= 1.7.8)
- Microsoft.SqlServer.DacFx (>= 162.4.92)
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.0.1-beta.81 | 31 | 11/19/2024 |
9.0.1-beta.80 | 25 | 11/19/2024 |
9.0.1-beta.79 | 31 | 11/19/2024 |
9.0.1-beta.77 | 32 | 11/15/2024 |
9.0.0 | 133 | 11/15/2024 |
9.0.0-beta.76 | 28 | 11/14/2024 |
9.0.0-beta.75 | 33 | 11/14/2024 |
9.0.0-beta.74 | 35 | 11/14/2024 |
9.0.0-beta.73 | 146 | 11/14/2024 |
9.0.0-beta.72 | 30 | 11/14/2024 |
9.0.0-beta.71 | 29 | 11/13/2024 |
9.0.0-beta.70 | 84 | 11/13/2024 |
9.0.0-beta.69 | 32 | 11/13/2024 |
9.0.0-beta.68 | 31 | 11/13/2024 |
9.0.0-beta.67 | 29 | 11/13/2024 |
9.0.0-beta.66 | 38 | 11/13/2024 |
9.0.0-beta.63 | 41 | 11/12/2024 |