25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
435 B

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