GO Feature Flag support for Aspire.
$ dotnet add package CommunityToolkit.Aspire.Hosting.GoFeatureFlagProvides extension methods and resource definitions for the Aspire AppHost to support running GO Feature Flag containers.
In your AppHost project, install the package using the following command:
dotnet add package CommunityToolkit.Aspire.Hosting.GoFeatureFlag
Then, in the Program.cs file of AppHost, add a GO Feature Flag resource and consume the connection using the following methods:
var builder = DistributedApplication.CreateBuilder(args);
var goff = builder.AddGoFeatureFlag("goff");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(goff);
builder.Build().Run();
https://learn.microsoft.com/dotnet/aspire/community-toolkit/hosting-go-feature-flag