Skip to content

Instantly share code, notes, and snippets.

@TechWatching
Last active January 28, 2020 11:04
Show Gist options
  • Save TechWatching/feebe3b50d2617f32c0ae28985c3b473 to your computer and use it in GitHub Desktop.
Save TechWatching/feebe3b50d2617f32c0ae28985c3b473 to your computer and use it in GitHub Desktop.
Nouveau projet ASP.NET Core 2.2
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