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

How to make ReSharper re-evaluate its assembly reference highlighting

I am creating a Prism Project Template, and the template works great. But after I create a project with the template some of the files look like this: Despite appearances, everything is just fine. If I do a Rebuild All I see that the solution builds with no errors: But the rebuild all does not … Read more

Visual Studio 2010 always thinks project is out of date, but nothing has changed

I have a very similar problem as described here. I also upgraded a mixed solution of C++/CLI and C# projects from Visual Studio 2008 to Visual Studio 2010. And now in Visual Studio 2010 one C++/CLI project always runs out of date. Even if it has been compiled and linked just before and F5 is hit, the messagebox “The project is … 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