Blame view

Program.cs 506 Bytes
c38c0e75   Vitaliy   first cpmmit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  using System;
  using System.Collections.Generic;
  using System.IO;
  using System.Linq;
  using System.Threading.Tasks;
  using Microsoft.AspNetCore.Hosting;
  
  namespace Maps
  {
      public class Program
      {
          public static void Main(string[] args)
          {
              var host = new WebHostBuilder()
                  .UseKestrel()
                  .UseContentRoot(Directory.GetCurrentDirectory())
c38c0e75   Vitaliy   first cpmmit
17
18
19
20
21
22
23
                  .UseStartup<Startup>()
                  .Build();
  
              host.Run();
          }
      }
  }