asp.net - How do I debug a common DLL project? -
The question title shows that I have two solutions: one for the ASP.NET site and for the other DLL projects.
P>
When I debug the site, I want to stop the breakpoint at DLL.
How can I do that * without entering the code from * .pdb files?
Add a common DLL project to resolve your site, change context in project context from DLL reference and You can take easy steps in code of normal DLL and breakpoints can be affected in both projects.
Alternatively, you can keep the DLL reference, and open the code that has been compiled in DLL in the project using it. Then you can set a breakpoint in this code and take action through it, but in this way you lose a lot of metadata which makes debugging difficult.
Comments
Post a Comment