Visual Studio 2017 debug cannot start program. Invalid pointer

Debugging an ASP.NET MVC application with the Chrome browser worked fine by default. I turned on debugging to start IE instead, to do additional testing, and debugging worked fine. After I finished with IE, I switched to Chrome and now I get this error. If I return to IE, I will also get this error. I closed and reopened the solution. I closed and reopened VS. I run VS with logging and I do not see errors in the activity log. I can successfully debug if I turn off "Enable JavaScript debugging for ASP.NET" in the debugging options, but it worked with this option before. Any suggestions?

+4
source share
2 answers

Unfortunately, information on how the debugging emulator works is hard to find. The only known solutions are ...

  • Reinstall Visual Studio
  • Upgrade Visual Studio if a patch / update is available.

You can use another browser or internal browser.

0
source

Go to Tools> Options> Debug> General and turn off the Enable JavaScript Debugging for ASP.NET option (Chrome and IE).

+2
source

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


All Articles