Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 25, 2019 11:48
Show Gist options
  • Save evgomes/c053d2922ba7c3b16f9098709a753c7b to your computer and use it in GitHub Desktop.
Save evgomes/c053d2922ba7c3b16f9098709a753c7b to your computer and use it in GitHub Desktop.
Default Program.cs of ASP.NET Core 2.2
namespace Supermarket.API
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment