What problem does it solve? Developers working on .NET projects often need authoritative, up-to-date guidance on SDK configuration, ASP.NET Core patterns, dependency injection lifetimes, EF Core pitfalls, and cross-platform publishing without searching scattered documentation. ## Core Features & Use Cases - SDK and Project Configuration: Covers csproj structure, Directory.Build.props, Central Package Management, and runtime identifiers for cross-platform builds. - ASP.NET Core and Worker Services: Documents minimal APIs, middleware ordering, options pattern, BackgroundService lifecycle, and DI lifetime traps. - EF Core, Testing, and Security: Explains DbContext scoping, migrations, connection resiliency, WebApplicationFactory testing, secrets management, and container publishing. - Use Case: When building a worker service that processes a queue with EF Core, consult this reference to correctly create scoped DbContext instances inside a singleton BackgroundService and avoid lifetime mismatch bugs. ## Quick Start Ask the dotnet-expert subagent how to configure dependency injection lifetimes and publish a container image for a .NET 10 web API.