I have a visual studio solution with two projects, one that compiles to a .exe which depends on a project that compliles to a dll. When I try to step into a function in the dll, it skips over it.
I tried setting a breakpoint in the function, and it gave a warning saying “The breakpoint will not be hit, no symbols have been loaded for this document.” Then it links me to this article. It says to check if the modules and symbols have been loaded, and both the exe and dll are loaded as well as their symbols. I then tried to resolve all 3 of the possible causes they listed, yet the debugger will still not step into the dll code. I also read from some other answers that I should disable debugging “Just my code” in the debugger options, and I’ve also tried copying the .pdb file of my dll into the output directory of my exe project, and neither of these worked.
Any ideas on what might be going on?
jbl271 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.