Skip to content

Instantly share code, notes, and snippets.

@StephanyBatista
Created May 23, 2016 18:40
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 StephanyBatista/6ad3072410fb361ac50bda66ba379329 to your computer and use it in GitHub Desktop.
Save StephanyBatista/6ad3072410fb361ac50bda66ba379329 to your computer and use it in GitHub Desktop.
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment