Merge branch 'release' into dev

This commit is contained in:
John Luo 2016-04-14 13:22:42 -07:00
commit 42b5762365
1 changed files with 2 additions and 2 deletions

View File

@ -7,9 +7,9 @@ namespace MusicStore
public static void Main(string[] args)
{
var host = new WebHostBuilder()
// We set the server before default args so that command line arguments can override it.
// We set the server by name before default args so that command line arguments can override it.
// This is used to allow deployers to choose the server for testing.
.UseKestrel()
.UseServer("Microsoft.AspNetCore.Server.Kestrel")
.UseDefaultHostingConfiguration(args)
.UseIISIntegration()
.UseStartup("MusicStore")