Skip to content

Instantly share code, notes, and snippets.

@gussiciliano
Created July 27, 2017 04:46
Show Gist options
  • Save gussiciliano/8d7fed715422fdfb3a34be6a389ed5f0 to your computer and use it in GitHub Desktop.
Save gussiciliano/8d7fed715422fdfb3a34be6a389ed5f0 to your computer and use it in GitHub Desktop.
var host = new WebHostBuilder()
.UseKestrel()
.UseStartup<Startup>()
.UseIISIntegration()
.UseContentRoot(Directory.GetCurrentDirectory())
.Build();
host.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment