Skip to content

Instantly share code, notes, and snippets.

@artisticcheese
Created September 10, 2017 15:29
Show Gist options
  • Select an option

  • Save artisticcheese/c031527bdd1ef5f29479cebd48888291 to your computer and use it in GitHub Desktop.

Select an option

Save artisticcheese/c031527bdd1ef5f29479cebd48888291 to your computer and use it in GitHub Desktop.
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment