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

后端 未结 8 1341
花落未央
花落未央 2021-01-07 23:58

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

<script

相关标签:
8条回答
  • 2021-01-08 00:09

    I experienced this issue after installing .NET Core SDK 2.0 without removing old .NET Core SDK's. It seems that having both causes issues.

    0 讨论(0)
  • 2021-01-08 00:13

    Turning off Silverlight debugging solved the problem for me.

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

    0 讨论(0)
  • 2021-01-08 00:14

    For me the following solved the problem:
    In Visual Studio 2017, open the property page for the web project. Go to tab "Web". Select Start Action "Don't open a page. Wait for a request from an external application".

    0 讨论(0)
  • 2021-01-08 00:16

    Try selecting a different browser (next to the green Run triangle). There is more info at https://developercommunity.visualstudio.com/content/problem/26630/the-debugger-is-not-properly-installed-cannot-debu.html, as noted by dajo.

    0 讨论(0)
  • 2021-01-08 00:18

    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

    0 讨论(0)
  • 2021-01-08 00:22

    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

    0 讨论(0)
提交回复
热议问题