February 2018
Intermediate to advanced
668 pages
15h 18m
English
dotnet new web
public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup<Startup>() .Build();
public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup<Startup>() .UseIISIntegration() .Build();
UseIISIntegration() method makes the ASP.NET Core application to use IIS as a reverse-proxy and specify which port will be listened, and ...