Skip to content

Instantly share code, notes, and snippets.

@wvanbesien
Created June 14, 2020 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvanbesien/b1d643e4e6d64eaf35dbbde45fbbe84d to your computer and use it in GitHub Desktop.
Save wvanbesien/b1d643e4e6d64eaf35dbbde45fbbe84d to your computer and use it in GitHub Desktop.
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment