Missed update after rebasing

This commit is contained in:
John Luo 2015-12-18 14:48:13 -08:00
parent bd10d507f8
commit 9edd6f60b9
1 changed files with 28 additions and 26 deletions

View File

@ -30,9 +30,10 @@ namespace Microsoft.AspNet.Server.Kestrel.FunctionalTests
})
.Build();
var hostBuilder = new WebHostBuilder(config);
hostBuilder.UseServerFactory("Microsoft.AspNet.Server.Kestrel");
hostBuilder.UseStartup(app =>
var builder = new WebApplicationBuilder()
.UseConfiguration(config)
.UseServerFactory("Microsoft.AspNet.Server.Kestrel")
.Configure(app =>
{
var serverInfo = app.ServerFeatures.Get<IKestrelServerInformation>();
app.Run(context =>
@ -46,7 +47,7 @@ namespace Microsoft.AspNet.Server.Kestrel.FunctionalTests
});
});
using (var app = hostBuilder.Build().Start())
using (var app = builder.Build().Start())
{
using (var client = new HttpClient())
{
@ -84,9 +85,10 @@ namespace Microsoft.AspNet.Server.Kestrel.FunctionalTests
})
.Build();
var hostBuilder = new WebHostBuilder(config);
hostBuilder.UseServerFactory("Microsoft.AspNet.Server.Kestrel");
hostBuilder.UseStartup(app =>
var hostBuilder = new WebApplicationBuilder()
.UseConfiguration(config)
.UseServerFactory("Microsoft.AspNet.Server.Kestrel")
.Configure(app =>
{
var serverInfo = app.ServerFeatures.Get<IKestrelServerInformation>();
app.Run(context =>