How to enable editing and continuation in Visual Studio

I used Visual Studio 2010 Express for the project and was recently changed to the final 2010. I notice that when I debug an express, I could set a breakpoint, edit the code if necessary, and continue without recompiling.

In VS 2010, it is finally said that the version has changed, and I need to stop and restart. How to get the functionality that is expressed in the end?

Thanks for the help.

EDIT: In particular, here is the message I get: "This source file has changed. It no longer matches the versio nof file that is used to create the debugged application."

+6
source share
1 answer

You need to enable "Edit and continue" as in the debug menu (should be enabled by default, check by going to debugging> options + settings) and, possibly, again in a specific project, if it is some kind of web project. This should be a check box.

edit: that was a bit since I tried this, but as far as I remember, it is like. I will see if I can grab the link for you.

+6
source

Source: https://habr.com/ru/post/885527/


All Articles