Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created May 26, 2022 16:53
Show Gist options
  • Save talkingdotnet/8c5e5efd9e47f0b4f68e30e46a070595 to your computer and use it in GitHub Desktop.
Save talkingdotnet/8c5e5efd9e47f0b4f68e30e46a070595 to your computer and use it in GitHub Desktop.
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment