Remove hosting.json

This commit is contained in:
John Luo 2016-03-30 16:58:14 -07:00
parent 20a24a2ab6
commit cfd6ec311e
2 changed files with 1 additions and 3 deletions

View File

@ -8,6 +8,7 @@ namespace MusicStore
{ {
var host = new WebHostBuilder() var host = new WebHostBuilder()
.UseDefaultHostingConfiguration(args) .UseDefaultHostingConfiguration(args)
.UseKestrel()
.UseIIS() .UseIIS()
.UseStartup("MusicStore") .UseStartup("MusicStore")
.Build(); .Build();

View File

@ -1,3 +0,0 @@
{
"server": "Microsoft.AspNetCore.Server.Kestrel"
}