This commit is contained in:
John Luo 2016-03-31 11:01:58 -07:00
Родитель cfd6ec311e
Коммит a587270b61
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -7,8 +7,10 @@ namespace MusicStore
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseDefaultHostingConfiguration(args)
// We set the server before default args so that command line arguments can override it.
// This is used to allow deployers to choose the server for testing.
.UseKestrel()
.UseDefaultHostingConfiguration(args)
.UseIIS()
.UseStartup("MusicStore")
.Build();

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

@ -23,7 +23,6 @@
"Areas",
"Views",
"wwwroot",
"hosting.json",
"config.json"
],
"dependencies": {