123456789101112131415161718192021 |
- using System.IO;
- using Microsoft.AspNetCore.Hosting;
-
- namespace WebApiWebSem
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- var host = new WebHostBuilder()
- .UseKestrel()
- .UseUrls("http://0.0.0.0:8080")
- .UseContentRoot(Directory.GetCurrentDirectory())
- .UseIISIntegration()
- .UseStartup<Startup>()
- .Build();
-
- host.Run();
- }
- }
- }
|