Skip to content

Instantly share code, notes, and snippets.

@saurabhpati
Created January 24, 2018 13:09
Show Gist options
  • Save saurabhpati/b8bee52b129de9920fa5287e211d1886 to your computer and use it in GitHub Desktop.
Save saurabhpati/b8bee52b129de9920fa5287e211d1886 to your computer and use it in GitHub Desktop.
ASP.NET Core Program Class
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment