With the latest version of visual studio, when I start debugging my app, I don't have access to all the URLs I've set up in my applicationhost.config
file. These were working up to about a week ago.
I have this in my applicationhost.config bindings
section:
<bindings>
<binding protocol="http" bindingInformation="*:51415:localhost" />
<binding protocol="http" bindingInformation="*:51415:subdomain.localhost" />
<binding protocol="http" bindingInformation="*:51415:othersubdomain.localhost" />
<binding protocol="http" bindingInformation="*:51415:thirdsubdomain.localhost" />
<binding protocol="http" bindingInformation="*:80:pro.myPC.mydomain.biz" />
<binding protocol="http" bindingInformation="*:443:pro.myPC.mydomain.biz" />
<binding protocol="https" bindingInformation="*:44303:pro.myPC.mydomain.biz" />
<binding protocol="https" bindingInformation="*:44303:localhost" />
</bindings>
I only see some of those listed in IISExpress:
http://subdomain.localhost:51415/
http://thirdsubdomain.localhost:51415/
https://pro.myPC.mydomain.biz:44303/
https://localhost:44370/
UPDATE: I removed the bindings for the subdomains, and http://localhost:51415 still doesn't work. Only the https url remains in the IIS Express system tray tool.