Provides extension methods and resource definitions for a .NET Aspire AppHost to configure a Kafka resource.
In your AppHost project, install the .NET Aspire Kafka Hosting library with NuGet:
dotnet add package Aspire.Hosting.Kafka
Then, in the Program.cs file of AppHost, add a Kafka resource and consume the connection using the following methods:
var kafka = builder.AddKafka("messaging");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(kafka);https://learn.microsoft.com/dotnet/aspire/messaging/kafka-component