Host builder extensions for SimpleModule that configure module registration, endpoint mapping, and the middleware pipeline.
dotnet add package SimpleModule.Hostingvar builder = WebApplication.CreateBuilder(args);
builder.AddSimpleModule();
var app = builder.Build();
app.UseSimpleModule();
app.Run();- AddSimpleModule() registers all framework services, modules, and database providers
- UseSimpleModule() configures middleware, maps endpoints, and sets up Inertia.js
- Swagger/OpenAPI integration via Swashbuckle
- MSBuild targets for build-time module wiring