Skip to content

Commit fa2353d

Browse files
Merge pull request #2728 from dotnet/main
✅ Merge `main` into `live`
2 parents fc5fcca + fb7c118 commit fa2353d

15 files changed

+545
-13
lines changed

.github/ISSUE_TEMPLATE/z-customer-feedback.yml

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ body:
5050
required: true
5151
attributes:
5252
label: Document Version Independent Id
53+
- type: input
54+
id: platformId
55+
validations:
56+
required: true
57+
attributes:
58+
label: Platform Id
5359
- type: input
5460
id: author
5561
validations:

aspire-samples

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: MongoDB hosting extensions
3+
description: Learn how to use the .NET Aspire MongoDB extensions package which provides extra functionality to the .NET Aspire MongoDB hosting package.
4+
ms.date: 03/04/2025
5+
---
6+
7+
# .NET Aspire Community Toolkit MongoDB hosting extensions
8+
9+
[!INCLUDE [includes-hosting](../includes/includes-hosting.md)]
10+
11+
[!INCLUDE [banner](includes/banner.md)]
12+
13+
In this article, you learn about the .NET Aspire Community Toolkit MongoDB hosting extensions package which provides extra functionality to the .NET Aspire [MongoDB hosting package](https://nuget.org/packages/Aspire.Hosting.MongoDB).
14+
15+
This package provides the following features:
16+
17+
- [DbGate](https://dbgate.org/) management UI
18+
19+
## Hosting integration
20+
21+
To get started with the .NET Aspire Community Toolkit MongoDB hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.MongoDB.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.MongoDB.Extensions) NuGet package in the AppHost project.
22+
23+
### [.NET CLI](#tab/dotnet-cli)
24+
25+
```dotnetcli
26+
dotnet add package CommunityToolkit.Aspire.Hosting.MongoDB.Extensions
27+
```
28+
29+
### [PackageReference](#tab/package-reference)
30+
31+
```xml
32+
<PackageReference Include="CommunityToolkit.Aspire.Hosting.MongoDB.Extensions"
33+
Version="*" />
34+
```
35+
36+
---
37+
38+
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39+
40+
## Example usage
41+
42+
To add the DbGate management UI to your MongoDB resource, call the `WithDbGate` method on the `MongoDBResourceBuilder` instance.
43+
44+
```csharp
45+
var MongoDB = builder.AddMongoDB("MongoDB")
46+
.WithDbGate();
47+
```
48+
49+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: PostgreSQL hosting extensions
3+
description: Learn how to use the .NET Aspire PostgreSQL extensions package which provides extra functionality to the .NET Aspire PostgreSQL hosting package.
4+
ms.date: 03/04/2025
5+
---
6+
7+
# .NET Aspire Community Toolkit PostgreSQL hosting extensions
8+
9+
[!INCLUDE [includes-hosting](../includes/includes-hosting.md)]
10+
11+
[!INCLUDE [banner](includes/banner.md)]
12+
13+
In this article, you learn about the .NET Aspire Community Toolkit PostgreSQL hosting extensions package which provides extra functionality to the .NET Aspire [PostgreSQL hosting package](https://nuget.org/packages/Aspire.Hosting.PostgreSQL).
14+
15+
This package provides the following features:
16+
17+
- [DbGate](https://dbgate.org/) management UI
18+
19+
## Hosting integration
20+
21+
To get started with the .NET Aspire Community Toolkit PostgreSQL hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions) NuGet package in the AppHost project.
22+
23+
### [.NET CLI](#tab/dotnet-cli)
24+
25+
```dotnetcli
26+
dotnet add package CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions
27+
```
28+
29+
### [PackageReference](#tab/package-reference)
30+
31+
```xml
32+
<PackageReference Include="CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions"
33+
Version="*" />
34+
```
35+
36+
---
37+
38+
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39+
40+
## Example usage
41+
42+
To add the DbGate management UI to your PostgreSQL resource, call the `WithDbGate` method on the `PostgresServerResource` instance.
43+
44+
```csharp
45+
var postgresServer = builder.AddPostgreSQL("PostgreSQL")
46+
.WithDbGate();
47+
```
48+
49+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: Redis hosting extensions
3+
description: Learn how to use the .NET Aspire Redis extensions package which provides extra functionality to the .NET Aspire Redis hosting package.
4+
ms.date: 03/04/2025
5+
---
6+
7+
# .NET Aspire Community Toolkit Redis hosting extensions
8+
9+
[!INCLUDE [includes-hosting](../includes/includes-hosting.md)]
10+
11+
[!INCLUDE [banner](includes/banner.md)]
12+
13+
In this article, you learn about the .NET Aspire Community Toolkit Redis hosting extensions package which provides extra functionality to the .NET Aspire [Redis hosting package](https://nuget.org/packages/Aspire.Hosting.Redis).
14+
15+
This package provides the following features:
16+
17+
- [DbGate](https://dbgate.org/) management UI
18+
19+
## Hosting integration
20+
21+
To get started with the .NET Aspire Community Toolkit Redis hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.Redis.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Redis.Extensions) NuGet package in the AppHost project.
22+
23+
### [.NET CLI](#tab/dotnet-cli)
24+
25+
```dotnetcli
26+
dotnet add package CommunityToolkit.Aspire.Hosting.Redis.Extensions
27+
```
28+
29+
### [PackageReference](#tab/package-reference)
30+
31+
```xml
32+
<PackageReference Include="CommunityToolkit.Aspire.Hosting.Redis.Extensions"
33+
Version="*" />
34+
```
35+
36+
---
37+
38+
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39+
40+
## Example usage
41+
42+
To add the DbGate management UI to your Redis resource, call the `WithDbGate` method on the `RedisResource` instance.
43+
44+
```csharp
45+
var redis = builder.AddRedis("Redis")
46+
.WithDbGate();
47+
```
48+
49+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: SQL Server hosting extensions
3+
description: Learn how to use the .NET Aspire SQL Server extensions package which provides extra functionality to the .NET Aspire SQL Server hosting package.
4+
ms.date: 03/04/2025
5+
---
6+
7+
# .NET Aspire Community Toolkit SQL Server hosting extensions
8+
9+
[!INCLUDE [includes-hosting](../includes/includes-hosting.md)]
10+
11+
[!INCLUDE [banner](includes/banner.md)]
12+
13+
In this article, you learn about the .NET Aspire Community Toolkit SQL Server hosting extensions package which provides extra functionality to the .NET Aspire [SQL Server hosting package](https://nuget.org/packages/Aspire.Hosting.SQLServer).
14+
15+
This package provides the following features:
16+
17+
- [DbGate](https://dbgate.org/) management UI
18+
19+
## Hosting integration
20+
21+
To get started with the .NET Aspire Community Toolkit SQL Server hosting extensions, install the [📦 CommunityToolkit.Aspire.Hosting.SqlServer.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SqlServer.Extensions) NuGet package in the AppHost project.
22+
23+
### [.NET CLI](#tab/dotnet-cli)
24+
25+
```dotnetcli
26+
dotnet add package CommunityToolkit.Aspire.Hosting.SqlServer.Extensions
27+
```
28+
29+
### [PackageReference](#tab/package-reference)
30+
31+
```xml
32+
<PackageReference Include="CommunityToolkit.Aspire.Hosting.SqlServer.Extensions"
33+
Version="*" />
34+
```
35+
36+
---
37+
38+
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
39+
40+
## Example usage
41+
42+
To add the DbGate management UI to your SQL Server resource, call the `WithDbGate` method on the `SqlServerResourceBuilder` instance.
43+
44+
```csharp
45+
var sqlserver = builder.AddSqlServer("sqlserver")
46+
.WithDbGate();
47+
```
48+
49+
This will add a new resource to the app host which will be available from the .NET Aspire dashboard.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
ms.topic: include
3+
---
4+
5+
The SQLite hosting integration models a SQLite database as the `SQLiteResource` type and will create the database file in the specified location. To access these types and APIs that allow you to add the [📦 CommunityToolkit.Aspire.Hosting.SQLite](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SQLite) NuGet package in the [app host](xref:dotnet/aspire/app-host) project.
6+
7+
### [.NET CLI](#tab/dotnet-cli)
8+
9+
```dotnetcli
10+
dotnet add package CommunityToolkit.Aspire.Hosting.SQLite
11+
```
12+
13+
### [PackageReference](#tab/package-reference)
14+
15+
```xml
16+
<PackageReference Include="CommunityToolkit.Aspire.Hosting.SQLite"
17+
Version="*" />
18+
```
19+
20+
---
21+
22+
For more information, see [dotnet add package](/dotnet/core/tools/dotnet-add-package) or [Manage package dependencies in .NET applications](/dotnet/core/tools/dependencies).
23+
24+
### Add SQLite resource
25+
26+
In the app host project, register and consume the SQLite integration using the `AddSQLite` extension method to add the SQLite database to the application builder.
27+
28+
```csharp
29+
var builder = DistributedApplication.CreateBuilder(args);
30+
31+
var sqlite = builder.AddSQLite("my-database");
32+
33+
var exampleProject = builder.AddProject<Projects.ExampleProject>()
34+
.WithReference(sqlite);
35+
```
36+
37+
When .NET Aspire adds a SQLite database to the app host, as shown in the preceding example, it creates a new SQLite database file in the users temp directory.
38+
39+
Alternatively, if you want to specify a custom location for the SQLite database file, provide the relevant arguments to the `AddSqlite` method.
40+
41+
```csharp
42+
var sqlite = builder.AddSQLite("my-database", "C:\\Database\\Location", "my-database.db");
43+
```
44+
45+
### Add SQLiteWeb resource
46+
47+
When adding the SQLite resource, you can also add the SQLiteWeb resource, which provides a web interface to interact with the SQLite database. To do this, use the `WithSqliteWeb` extension method.
48+
49+
```csharp
50+
var sqlite = builder.AddSQLite("my-database")
51+
.WithSqliteWeb();
52+
```
53+
54+
This code adds a container based on `ghcr.io/coleifer/sqlite-web` to the app host, which provides a web interface to interact with the SQLite database it is connected to. Each SQLiteWeb instance is connected to a single SQLite database, meaning that if you add multiple SQLiteWeb instances, there will be multiple SQLiteWeb containers.
55+
56+
### Adding SQLite extensions
57+
58+
SQLite supports extensions that can be added to the SQLite database. Extensions can either be provided via a NuGet package, or via a location on disk. Use either the `WithNuGetExtension` or `WithLocalExtension` extension methods to add extensions to the SQLite database.
59+
60+
> [!NOTE]
61+
> The SQLite extensions support is considered experimental and produces a `CTASPIRE002` warning.

docs/community-toolkit/overview.md

+22-4
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ The community toolkit is a growing project, publishing a set of NuGet packages.
4040
- [📄 .NET Aspire Ollama hosting integration](ollama.md#hosting-integration).
4141
- [📦 CommunityToolkit.Aspire.Hosting.Ollama](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Ollama).
4242
- The [Meilisearch](https://www.meilisearch.com) integration enables hosting Meilisearch containers.
43-
- [📄 .NET Aspire Meilisearch hosting integration](https://github.com/CommunityToolkit/Aspire/tree/main/src/CommunityToolkit.Aspire.Hosting.Meilisearch).
43+
- [📄 .NET Aspire Meilisearch hosting integration](hosting-meilisearch.md#hosting-integration).
4444
- [📦 CommunityToolkit.Aspire.Hosting.Meilisearch](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Meilisearch).
4545
- The [Rust apps](https://www.rust-lang.org/) integration provides support for hosting Rust applications.
46-
- [📄 .NET Aspire Rust hosting integration](https://github.com/CommunityToolkit/Aspire/tree/main/src/CommunityToolkit.Aspire.Hosting.Rust).
46+
- [📄 .NET Aspire Rust hosting integration](hosting-rust.md#hosting-integration).
4747
- [📦 CommunityToolkit.Aspire.Hosting.Rust](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Rust).
48+
- The [SQLite](https://www.sqlite.org/index.html) integration provides support for hosting SQLite databases.
49+
- [📄 .NET Aspire SQLite hosting integration](sqlite.md#hosting-integration)
50+
- [📦 CommunityToolkit.Aspire.Hosting.SQLite](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SQLite).
4851

4952
### Client integrations
5053

@@ -54,17 +57,32 @@ The following client integrations are available in the toolkit:
5457
- [📄 .NET Aspire Ollama client integration](ollama.md#client-integration)
5558
- [📦 CommunityToolkit.Aspire.OllamaSharp](https://nuget.org/packages/CommunityToolkit.Aspire.OllamaSharp)
5659
- **Meilisearch** is a .NET client for the Meilisearch API:
57-
- [📄 .NET Aspire Meilisearch client integration](https://github.com/CommunityToolkit/Aspire/tree/main/src/CommunityToolkit.Aspire.Hosting.Meilisearch)
60+
- [📄 .NET Aspire Meilisearch client integration](hosting-meilisearch.md#client-integration)
5861
- [📦 CommunityToolkit.Aspire.Meilisearch](https://nuget.org/packages/CommunityToolkit.Aspire.Meilisearch)
62+
- The [SQLite](https://www.sqlite.org/index.html) integration provides support for hosting SQLite databases.
63+
- [📄 .NET Aspire SQLite hosting integration](sqlite.md#client-integration)
64+
- [📦 CommunityToolkit.Aspire.Hosting.SQLite](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SQLite).
65+
- The [SQLite Entity Framework](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite) integration provides support for hosting SQLite databases with Entity Framework.
66+
- [📄 .NET Aspire SQLite EF hosting integration](sqlite-entity-framework-integration.md#client-integration)
67+
- [📦 CommunityToolkit.Aspire.Microsoft.EntityFrameworkCore.Sqlite](https://nuget.org/packages/CommunityToolkit.Aspire.Microsoft.EntityFrameworkCore.Sqlite).
5968

6069
> [!TIP]
6170
> Always check the [GitHub repository][github-repo] for the most up-to-date information on the toolkit.
6271
6372
### Extensions
6473

65-
When you're working with [Node.js](https://nodejs.org/), there are lots of ways to achieve the same thing. To that end, the .NET Aspire Community Toolkit exposes some extensions that include support for alternative package managers ([yarn](https://yarnpkg.com/) and [pnpm](https://pnpm.io/)), and developer workflow improvements.
74+
To expand the functionality provided by the .NET Aspire integrations, the Community Toolkit also provides extension packages for some hosting integrations. The following extensions are available in the toolkit:
6675

6776
- [📦 CommunityToolkit.Aspire.Hosting.NodeJS.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.NodeJS.Extensions)
77+
- [📄 Docs](hosting-nodejs-extensions.md)
78+
- [📦 CommunityToolkit.Aspire.Hosting.SqlServer.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.SqlServer.Extensions)
79+
- [📄 Docs](hosting-sqlserver-extensions.md)
80+
- [📦 CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.PostgreSQL.Extensions)
81+
- [📄 Docs](hosting-postgresql-extensions.md)
82+
- [📦 CommunityToolkit.Aspire.Hosting.Redis.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.Redis.Extensions)
83+
- [📄 Docs](hosting-redis-extensions.md)
84+
- [📦 CommunityToolkit.Aspire.Hosting.MongoDB.Extensions](https://nuget.org/packages/CommunityToolkit.Aspire.Hosting.MongoDB.Extensions)
85+
- [📄 Docs](hosting-mongodb-extensions.md)
6886

6987
If you're not seeing an integration or extension you need, you can contribute to the toolkit by creating your own integration and submitting a pull request. For more information, see [How to collaborate](#how-to-collaborate).
7088

0 commit comments

Comments
 (0)