Skip to content

Instantly share code, notes, and snippets.

@WernerMairl
Created July 20, 2017 04:35
Show Gist options
  • Save WernerMairl/01d7a4d1269ec07eb5a9f3ab0ff26c88 to your computer and use it in GitHub Desktop.
Save WernerMairl/01d7a4d1269ec07eb5a9f3ab0ff26c88 to your computer and use it in GitHub Desktop.
WebHost Default Sample
public static void Main(string[] args)
{
var config = new ConfigurationBuilder()
.AddJsonFile("hosting.json", optional: true)
.AddCommandLine(args)
.Build();
var host = new WebHostBuilder()
.UseConfiguration(config)
.UseKestrel()
.Build();
host.Run();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment