Configuring .NET Hosting
Compose a host from small, named feature extensions on IHostApplicationBuilder, each owning one capability and returning the builder for chaining.
When to use
- Adding or reviewing host composition in
Program.csor a shared defaults project. - Writing a
Configure…/Add…extension that wires a capability into every host. - Wiring host startup, shutdown, and lifecycle hooks.
Workflow
Step 1: Make each capability a builder extension
Write a generic extension over IHostApplicationBuilder; the same wiring composes into any host (worker, web, CLI).
Return the builder.
public static TBuilder AddServiceDefaults<TBuilder>(this TBuilder builder) where TBuilder : IHostApplicationBuilder
{
builder.ConfigureTelemetry();
builder.ConfigureSerialization();
builder.ConfigureHttpClients();
return builder;
}
Step 2: Compose the host from named steps
Keep Program.cs a readable list of capability calls; put the wiring inside each extension.
var builder = Host.CreateApplicationBuilder(args);
builder.AddServiceDefaults();
builder.AddFeatureFlags();
builder.Services.AddEmailSenders();
var host = builder.Build();
await host.RunAsync();
Step 3: Keep a feature's configuration together
Read builder.Configuration and branch on builder.Environment inside the capability's extension, and keep its options binding and service registrations in the same extension when they always change together.
Step 4: Start long-running work as a hosted service
Register continuous or startup-bound work with AddHostedService; never run it inline during composition.
Create a scope inside a hosted operation before resolving scoped dependencies, and keep any loop responsive to the stopping token.
Step 5: Verify
Build the host through its normal entry point and confirm it starts, resolves the changed capability, honors host shutdown, and stops cleanly.
Validation
- Each capability is a builder extension returning the builder.
-
Program.csreads as a list of capability calls, not inline wiring. - Environment and configuration are read through the builder.
- Hosted work observes the stopping token and shuts down cleanly.
Common Pitfalls
| Pitfall | Correct approach |
|---|---|
Wiring a capability inline in Program.cs |
Move it into a Configure…/Add… builder extension. |
| Running startup work during composition | Register an IHostedService/BackgroundService. |
| Resolving a scoped service directly in a hosted service | Create a scope with IServiceScopeFactory first. |
Extension returns void, breaking the chain |
Return the builder (or IServiceCollection). |