Aspire.Hosting.MySql
13.4.6
Prefix Reserved
dotnet add package Aspire.Hosting.MySql --version 13.4.6
NuGet\Install-Package Aspire.Hosting.MySql -Version 13.4.6
<PackageReference Include="Aspire.Hosting.MySql" Version="13.4.6" />
<PackageVersion Include="Aspire.Hosting.MySql" Version="13.4.6" />Directory.Packages.props
<PackageReference Include="Aspire.Hosting.MySql" />Project file
paket add Aspire.Hosting.MySql --version 13.4.6
#r "nuget: Aspire.Hosting.MySql, 13.4.6"
#:package Aspire.Hosting.MySql@13.4.6
#addin nuget:?package=Aspire.Hosting.MySql&version=13.4.6Install as a Cake Addin
#tool nuget:?package=Aspire.Hosting.MySql&version=13.4.6Install as a Cake Tool
Aspire.Hosting.MySql library
Provides extension methods and resource definitions for an Aspire AppHost to configure a MySQL resource.
Getting started
Install the package
In your AppHost project, install the Aspire MySQL Hosting library with NuGet:
dotnet add package Aspire.Hosting.MySql
Usage example
Then, in the AppHost.cs file of AppHost, add a MySQL resource and consume the connection using the following methods:
var db = builder.AddMySql("mysql").AddDatabase("mydb");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(db);
Connection Properties
When you reference a MySQL resource using WithReference, the following connection properties are made available to the consuming project:
MySQL server
The MySQL server resource exposes the following connection properties:
| Property Name | Description |
|---|---|
Host |
The hostname or IP address of the MySQL server |
Port |
The port number the MySQL server is listening on |
Username |
The username for authentication |
Password |
The password for authentication |
Uri |
The connection URI, with the format mysql://root:{Password}@{Host}:{Port} |
JdbcConnectionString |
The JDBC connection string for MySQL, with the format jdbc:mysql://{Host}:{Port}. User and password credentials are provided as separate Username and Password properties. |
MySQL database
The MySQL database resource combines the server properties above and adds the following connection properties:
| Property Name | Description |
|---|---|
DatabaseName |
The MySQL database name |
Uri |
The database-specific URI, with the format mysql://root:{Password}@{Host}:{Port}/{DatabaseName} |
JdbcConnectionString |
The database-specific JDBC connection string, with the format jdbc:mysql://{Host}:{Port}/{DatabaseName}. User and password credentials are provided as separate Username and Password properties. |
Aspire exposes each property as an environment variable named [RESOURCE]_[PROPERTY]. For instance, the Uri property of a resource called db1 becomes DB1_URI.
Additional documentation
Feedback & contributing
| 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 was computed. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Aspire.Hosting (>= 13.4.6)
- AspNetCore.HealthChecks.MySql (>= 9.0.0)
- AspNetCore.HealthChecks.Uris (>= 9.0.0)
- Google.Protobuf (>= 3.34.1)
- Grpc.AspNetCore (>= 2.80.0)
- Grpc.Net.ClientFactory (>= 2.80.0)
- Grpc.Tools (>= 2.80.0)
- Humanizer.Core (>= 3.0.10)
- JsonPatch.Net (>= 3.3.0)
- KubernetesClient (>= 19.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.8)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.27)
- Microsoft.Extensions.FileSystemGlobbing (>= 10.0.8)
- Microsoft.Extensions.Hosting (>= 10.0.8)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Http (>= 10.0.8)
- Microsoft.Extensions.Logging (>= 10.0.8)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Options (>= 10.0.8)
- Microsoft.Extensions.Primitives (>= 10.0.8)
- ModelContextProtocol (>= 1.3.0)
- Newtonsoft.Json (>= 13.0.4)
- OpenTelemetry.Exporter.OpenTelemetryProtocol (>= 1.15.3)
- OpenTelemetry.Extensions.Hosting (>= 1.15.3)
- Polly.Core (>= 8.6.6)
- Semver (>= 3.0.0)
- StreamJsonRpc (>= 2.25.29)
- System.IO.Hashing (>= 10.0.8)
- System.Text.Json (>= 10.0.8)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on Aspire.Hosting.MySql:
| Package | Downloads |
|---|---|
|
CommunityToolkit.Aspire.Hosting.MySql.Extensions
An Aspire integration for extending mysql hosting. |
|
|
Shiny.Aspire.Orleans.Hosting
Package Description |
|
|
Shiny.DocumentDb.Aspire.Hosting
.NET Aspire AppHost integration for Shiny.DocumentDb — model a document store as a resource, pick its backend (Postgres/SQL Server/MySQL/SQLite), and gate seeding. JIT-only (Aspire hosting is reflection-heavy). |
|
|
YMJake.Aspire.Hosting.Apollo
Hosting extensions for running Apollo Configuration Center with .NET Aspire (config service, admin service, portal, MySQL init scripts included). |
|
|
Sorvia.Aspire.Hosting.Dokploy
Aspire hosting integration for Dokploy — a self-hosted PaaS. Provides AddDokployEnvironment() to deploy Aspire resources to a Dokploy instance via Docker Compose generation and the Dokploy REST API. |
GitHub repositories (7)
Showing the top 7 popular GitHub repositories that depend on Aspire.Hosting.MySql:
| Repository | Stars |
|---|---|
|
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
|
|
|
microsoft/aspire-samples
Browse the sample apps demonstrating Aspire integration across C#, JavaScript, TypeScript, Python, Go, containers, databases, cloud, AI, and observability scenarios.
|
|
|
NexusForever/NexusForever
An emulator for the defunct MMORPG WildStar which supports build 16042 (Final Patch)
|
|
|
CommunityToolkit/Aspire
A community project with additional components and extensions for Aspire
|
|
|
AAEmu/AAEmu
A server software for ArcheAge written in .Net C#
|
|
|
formcms/formcms
AI Agent: Open-source headless CMS built with ASP.NET Core (C#) and React, featuring REST APIs, GraphQL, and a GrapesJS page designer.
|
|
|
PacktPublishing/Pragmatic-Microservices-with-CSharp-and-Azure
Pragmatic Microservices with C# and Azure, published by Packt
|
| Version | Downloads | Last Updated |
|---|---|---|
| 13.4.6 | 2,109 | 6/19/2026 |
| 13.4.5 | 1,841 | 6/17/2026 |
| 13.4.4 | 1,108 | 6/15/2026 |
| 13.4.3 | 3,305 | 6/8/2026 |
| 13.4.2 | 1,946 | 6/3/2026 |
| 13.4.1 | 158 | 6/3/2026 |
| 13.4.0 | 1,944 | 6/1/2026 |
| 13.3.5 | 8,729 | 5/21/2026 |
| 13.3.4 | 699 | 5/19/2026 |
| 13.3.3 | 5,158 | 5/15/2026 |
| 13.3.2 | 1,201 | 5/14/2026 |
| 13.3.1 | 1,671 | 5/12/2026 |
| 13.3.0 | 4,518 | 5/7/2026 |
| 13.2.4 | 4,805 | 4/24/2026 |
| 13.2.3 | 2,095 | 4/21/2026 |
| 13.2.2 | 9,196 | 4/8/2026 |
| 13.2.1 | 4,177 | 3/31/2026 |
| 13.2.0 | 10,331 | 3/23/2026 |
| 13.1.3 | 1,700 | 3/19/2026 |
| 13.1.2 | 9,339 | 2/26/2026 |