Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created May 28, 2022 10:52
Show Gist options
  • Save talkingdotnet/a6a7ad32771ae2bda32c7eb3c41d662d to your computer and use it in GitHub Desktop.
Save talkingdotnet/a6a7ad32771ae2bda32c7eb3c41d662d to your computer and use it in GitHub Desktop.
var builder = WebApplication.CreateBuilder(args);
var startup = new Startup(builder.Configuration);
startup.ConfigureServices(builder.Services);
var app = builder.Build();
startup.Configure(app, builder.Environment);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment