configure port on Web

This commit is contained in:
Collin M. Barrett 2017-10-31 07:48:59 -05:00
parent 3fd9e7f62e
commit b63b5aaef3

View file

@ -13,6 +13,7 @@ public static void Main(string[] args)
public static IWebHost BuildWebHost(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.UseUrls("http://localhost:5001;")
.UseStartup<Startup>()
.Build();
}