Removed a lingering solution file that was not needed. Within Program.cs I changed the port to 5002

This commit is contained in:
amazing-username
2019-04-14 16:11:48 +00:00
parent e982534c74
commit ed6ae7e3dd
2 changed files with 2 additions and 19 deletions
+2 -1
View File
@@ -19,6 +19,7 @@ namespace Icarus
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
.UseStartup<Startup>()
.UseUrls("http://localhost:5002");
}
}