Will
Will

Reputation: 10431

Visual studio browse references source?

I remember being able to do this but I must have changed something as I can no longer view an external projects source even though the pdb is with the reference. I can step into external functions when debugging but I can't go to them using "Go to implementation/declaration"

Upvotes: 1

Views: 97

Answers (1)

David
David

Reputation: 73574

This will work if you have a separate class library Project as a part of your Solution, and you added a reference to the Project, not the compiled .dll.

You cannot step into a .dll when debugging.

It's all in how you add the reference.

Upvotes: 2

Related Questions