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

123456789101112131415161718192021222324
  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 SiteStatus
  11. {
  12. public class Program
  13. {
  14. public static void Main(string[] args)
  15. {
  16. CreateWebHostBuilder(args).Build().Run();
  17. }
  18. public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
  19. WebHost.CreateDefaultBuilder(args)
  20. .UseStartup<Startup>();
  21. }
  22. }