Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging .NET assemblies built outside of Dev Studio

I have a .NET project which references another assembly that is built outside of the solution.

I have all of the source code to the other assembly - but I can only add it as a ".DLL" reference rather than adding the actual project as a dependency.

The problem is that when I step into the external code, the debugger "steps over" it.

How do I enable "source code" debugging for the external .NET assembly.

like image 214
Paul Hollingsworth Avatar asked Jan 25 '26 02:01

Paul Hollingsworth


1 Answers

If you have the dll and want to step into the binary, you would need the dll's pdb file.
About debugging .Net source in this article

like image 172
Kb. Avatar answered Jan 28 '26 12:01

Kb.