When debugging a WebAPI project in VS2017 I set up my applicationhost.config so that IISExpress is open to external requests. In my case, the url in the binding line looks like this:
<binding protocol="http" bindingInformation="*:64895:*" />
The problem I'm having is every time I close VS2017, its creating a whole new site presumably since the binding in the project properties is http://localhost:64895. So every time I open the project, I have to edit the applicationhost.config file which I didn't have to do in VS2015.
Is there a way to fix VS2017 so its not creating a new site every time?