Created
May 28, 2022 10:52
-
-
Save talkingdotnet/a6a7ad32771ae2bda32c7eb3c41d662d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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