I have just pulled one Asp.Net Core 2 Web API project from GitHub, and when I try to run the application via IISExpress it always throws HTTP 404 error. The build is always successful. I am running it from Visual Studio 2017 on my Windows machine.
Things I have tried:
- Tried different browsers
- Checked my proxy settings
Used
.UseIISIntegration()in my Program.cs filepublic static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) .UseStartup<Startup>() .UseIISIntegration() .Build();Deleted the
.vsfolder from the app directory and tried again
Nothing seems to be working. Has anyone else faced this issue?

