How do I scale out instances of a project in .NET Aspire horizontally?
For instance, in the following example, "products" project is being added, but how to instruct .NET Aspire that multiple instances are needed:
builder.AddProject<Projects.Products>("products");
WithReplicas
Example Usage:
However, I would advise you to refrain from applying this to a project that applies or works on database migrations.