You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 430B

123456789101112131415161718
  1. using Microsoft.AspNetCore;
  2. using Microsoft.AspNetCore.Hosting;
  3. namespace Luticate2.Mvc.Auth.WebApiSample
  4. {
  5. public class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. BuildWebHost(args).Run();
  10. }
  11. public static IWebHost BuildWebHost(string[] args) =>
  12. WebHost.CreateDefaultBuilder(args)
  13. .UseStartup<Startup>()
  14. .Build();
  15. }
  16. }