1️⃣1⃣ Configuration & Setup
builder.Services.AddApiGeneratorServices()
.AddConfig(NameOfRootNodeInAppSettings)
or
.AddConfig(new ApiGeneratorConfig() { ... })
or
.AddConfig()var app = builder.Build();
// Configure the HTTP request pipeline.
app.UseApiGenerator();
app.UseAutomaticApiMigrations(true);Last updated