How to debug into .NET framework source code

前端 未结 2 1309
天涯浪人
天涯浪人 2020-12-31 18:39

How can one debug the .NET framework source code using Visual Studio 2017?

There are some questions here on stackoverflow about this topic, but

2条回答
  •  北海茫月
    2020-12-31 19:25

    First of all, I tested it using Microsoft Visual Studio Enterprise 2017, Version 15.9.7 and via .NET Framework 4.7.2. Though, I think it should work on Community edition the same way.

    Steps to take:

    1. Go to Tools / Options / Debugging / General, and perform these settings:

      • check Enable .NET Framework source stepping (this will automatically disable "Enable Just My Code"; if not, do it manually)
      • uncheck Require source files to exactly match the original version
      • check Enable source server support
    2. Go to Tools / Options / Debugging / Symbols, and:

      • in the upper listbox check Microsoft Symbol Servers
      • click Empty Symbol Cache button (to make sure you will get the correct symbols)
      • select Load all modules, unless excluded radio button at the bottom
    3. Download the source of the .NET framework version your project is targeting, from the https://referencesource.microsoft.com/download.html site.

    4. Unpack the downloaded archive (zip) file to a convenient path on your PC.

    5. Debug your application; set a breakpoint to the line of .NET code you wish to debug, and step to the desired code line with the debugger.

    Note: your application may start slower since it will download PDBs from the internet.

    1. Press Step Into (F11 by default). If your settings are correct, this will cause some delay (if your VS crashes (like mine did), Empty Symbol Cache again). Eventually it will ask for the sources of the given file, e.g. dictionary.cs. Two things can happen here:

      • A) It asks for the source file (.cs) in a file dialog. Go to step 7.
      • B) It says whatever.cs not found, and there is a link that says "Browse and find whatever.cs...". Click that link.
    2. Select the corresponding .cs file on your disk (you can search for the file on the OS).

    Note: I had to restart VS several times until it "did not crash" while looking for sources, this is most likely a bug in VS.

    1. If you did everything correctly, you will find yourself debugging the .NET source code.

    Note: Since VS saves the path you entered for the source files, you can stop debugging or restart VS; it will work next time, too. Besides, you do not have to manually select any more source files within the framework, because the VS will use the source folder you entered and will search in source files there.

提交回复
热议问题