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");
}
}
-18
View File
@@ -1,18 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal