Skip to content

Instantly share code, notes, and snippets.

WebApplication.CreateBuilder(args)
.Host
.UseDefaultServiceProvider(x => {
x.ValidateScopes = true;
x.ValidateOnBuild = true;
}).ConfigureServices(services => {
//Add your other services here
var subclassTypes = Assembly
.GetAssembly(typeof(Program))!