How can I prevent Visual Studio 2013 from closing my IIS Express app when I end debugging?

Previously in 2012, if I debugged in Chrome (for example), and then stopped the debugger, the website would remain running in IIS Express. This no longer seems to be the case in 2013. Is this a new change that I need to make? How can I keep the website instance running even after I stop … Read more

Android Debug Bridge (adb) device – no permissions [duplicate]

This question already has answers here: set up device for development (???????????? no permissions) (30 answers) Closed 4 years ago. I have a problem connecting HTC Wildfire A3333 in debugging mode with my Fedora Linux 17. Adb says: ./adb devices List of devices attached ???????????? no permissions my udev rules (first rule for Samsung which … Read more

Visual Studio: How to break on handled exceptions?

I would like Visual Studio to break when a handled exception happens (i.e. I don’t just want to see a “First chance” message, I want to debug the actual exception). e.g. I want the debugger to break at the exception: try { System.IO.File.Delete(someFilename); } catch (Exception) { //we really don’t care at runtime if the … Read more