Visual studio won't debug into referenced DLL (from same solution)

Posted by Greg on Stack Overflow See other posts from Stack Overflow or by Greg
Published on 2010-03-29T15:45:31Z Indexed on 2010/03/29 15:53 UTC
Read the original article Hit count: 424

I have a Visual studio 2008 solution, with 2 projects. A DLL, A, and a Web application, B.

B has a project reference to A, and A.dll and A.pdb are being copied to B's bin/ directory.

Everything is set to compile in debug mode.

I can run the cassini webserver and debug web application B fine, but when I come to call a method in A.dll, pressing F11 to step into it does not step into it, it steps over it. I want to step into it.

Any ideas why I might not be able to step into the source code of A?

© Stack Overflow or respective owner

Related posts about visual-studio-2008

Related posts about debugging