Skip to content

Instantly share code, notes, and snippets.

@thiagoloureiro
Created May 12, 2018 18:57
Show Gist options
  • Save thiagoloureiro/55c9636a12b2db01d7b516775823e350 to your computer and use it in GitHub Desktop.
Save thiagoloureiro/55c9636a12b2db01d7b516775823e350 to your computer and use it in GitHub Desktop.
private static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseKestrel()
.UseStartup<Startup>()
.UseUrls("http://+:88")
.Build();
host.Run();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment