Visual Studio 2010: very slow web applications debugging!

后端 未结 16 2735
一生所求
一生所求 2020-12-08 00:17

I recently installed Visual Studio 2010 (Ultimate edition, final version released in April), and found that debugging a web application bec

相关标签:
16条回答
  • 2020-12-08 01:11

    Try 'Delete all breakpoints' from the Debug menu. It sped up my web application debugging by 10 times.

    0 讨论(0)
  • 2020-12-08 01:15

    I had this problem as well and it turned out to be due to sybmbols. Go to Tools > Options > Debugging > Symbols and uncheck any symbol servers

    0 讨论(0)
  • 2020-12-08 01:16

    Disable Intellitrace (historical debugger) - it enable jumping "back in time" during debug but it slows down debugging.

    You can disable it from the options->intellitrace

    0 讨论(0)
  • 2020-12-08 01:16

    I had problems with slow Visual Studio debugging when "Native Code" debugger was enabled. Try disabling it.

    On "Visual Studio 2010" go to:

    1. Project Properties ->
    2. Web ->
    3. Debuggers (bottom of page). ->
    4. Disable all exept ASP.NET

    Hope it helps.

    Similar question: 1

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