fix build break due to aspnet/configuration #246

This commit is contained in:
Kirthi Krishnamraju 2015-08-14 10:04:49 -07:00
parent e2be1a164f
commit d487a709e5
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace Microsoft.AspNet.WebSockets.Client.Test
var configBuilder = new ConfigurationBuilder();
configBuilder.Add(new MemoryConfigurationSource());
var config = configBuilder.Build();
config.Set("server.urls", "http://localhost:54321");
config["server.urls"] = "http://localhost:54321";
var host = new WebHostBuilder(CallContextServiceLocator.Locator.ServiceProvider, config)
.UseServer("Microsoft.AspNet.Server.Kestrel")