|
|
|
@ -1,4 +1,5 @@ |
|
|
|
using Microsoft.AspNetCore.Hosting; |
|
|
|
using System.IO; |
|
|
|
using Microsoft.AspNetCore.Hosting; |
|
|
|
using Microsoft.Extensions.Configuration; |
|
|
|
using Microsoft.Extensions.Logging; |
|
|
|
|
|
|
|
@ -17,6 +18,7 @@ namespace Mvc.Client |
|
|
|
.ConfigureLogging(options => options.AddConsole()) |
|
|
|
.ConfigureLogging(options => options.AddDebug()) |
|
|
|
.UseConfiguration(configuration) |
|
|
|
.UseContentRoot(Directory.GetCurrentDirectory()) |
|
|
|
.UseIISIntegration() |
|
|
|
.UseKestrel() |
|
|
|
.UseStartup<Startup>() |
|
|
|
|