This repository was archived by the owner on Nov 1, 2018. It is now read-only.
This repository was archived by the owner on Nov 1, 2018. It is now read-only.
Prevent users breakpoints from being hit twice on debug #102
Closed
Description
Today when a users debugs their application via IISExpress (F5 in VisualStudio) their site gets hit with two requests (breakpoints get hit twice). One debug request to start the application, and then a second from the started web browser.
I believe VisualStudio currently sends the first request with verb "Debug". "Debug" seems too generic (in my opinion) to be baked directly into IISIntegration. We should consider creating a custom Visual Studio specific debug verb that indicates a request is to boot the application/for debug; that way we can eat it prior to it reaching the users application.
This was initially filed over in tooling here.