Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2017: The debugger is not properly installed. Cannot debug the requested type of code

I installed Visual Studio 2017 Enterprise edition and when I am running my application getting the below error.

Error

like image 1000
Abinash Panda Avatar asked Mar 22 '17 05:03

Abinash Panda


3 Answers

Turning off Silverlight debugging solved the problem for me.

Go to the web application's Properties. On the Web tab, turn off Silverlight.

Turn off Silverlight debugging

like image 185
shamp00 Avatar answered Nov 17 '22 02:11

shamp00


I solved this problem for Visual Studio 2017 Community.

Clean folders:

  • C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug
  • C:\Program Files\Common Files\microsoft shared\VS7Debug

Then recover Visual Studio

P.S. This issue happen because dlls corrupted. Here is this case

like image 22
Truandale Avatar answered Nov 17 '22 01:11

Truandale


For me the fix was found in that thread, I disabled javascript debugging in the Tools -> Options -> Debugging -> General -> Enable Javascript debugging...

Seems that it was having issues debugging in chrome..

direct link to the answer

like image 13
gmn Avatar answered Nov 17 '22 01:11

gmn