When I try to start my ASP.Net Core 1.1 app, I'm receiving the following error:
An error occurred attempting to determine the process id of Blah.exe which is hosting your application. An error occurred while sending the request.
I changed the applicationUrl port number from 44300 to 44301 in `launchSettings.json' and I was able to get it to start.
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "https://localhost:44301/",
"sslPort": 44301
}
}
Why did changing the port # make it work? Where can I look to figure out why it wouldn't startup?
I ran TCPViewer and I don't see 44300 in use.