Remove reference to UseDefaultHostConfiguration

This commit is contained in:
BrennanConroy 2016-04-27 18:45:43 -07:00
Родитель 7fd1e62322
Коммит d7e509ebec
2 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -33,7 +33,6 @@ namespace HttpOverridesSample
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseDefaultHostingConfiguration(args)
.UseKestrel()
// .UseIIS() // This repo can no longer reference IIS because IISIntegration depends on it.
.UseStartup<Startup>()

Просмотреть файл

@ -38,7 +38,6 @@ namespace ResponseBufferingSample
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseDefaultHostingConfiguration(args)
.UseKestrel()
// .UseIIS() // This repo can no longer reference IIS because IISIntegration depends on it.
.UseStartup<Startup>()