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 618B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. using Microsoft.AspNetCore;
  7. using Microsoft.AspNetCore.Hosting;
  8. using Microsoft.Extensions.Configuration;
  9. using Microsoft.Extensions.Logging;
  10. namespace Luticate2.Auth.WebApiSample
  11. {
  12. public class Program
  13. {
  14. public static void Main(string[] args)
  15. {
  16. BuildWebHost(args).Run();
  17. }
  18. public static IWebHost BuildWebHost(string[] args) =>
  19. WebHost.CreateDefaultBuilder(args)
  20. .UseStartup<Startup>()
  21. .Build();
  22. }
  23. }