Reputation: 136
I have several projects inside my solution, a web presentation layer, that consume data from some webservices, I can debug the presentation layer, but can't stop the debugger on the webservices.
Upvotes: 0
Views: 271
Reputation: 136
Several times in my life as .NET Developer I have had some issue with loading PDB’s files. Each time I have had this kind of problem, I've wasted a lot of time trying to found a solution but usually I can’t find the solution easily because this happens not for an obvious reason. The common solutions many times I read were:
• Reset Visual Studio Settings • Removed all files in every \Temporary ASP.NET Files Folder Cleanup the project • Create a new solution and added all the projects to this new solution • Delete the solution suo file • Create a new ASP.NET Web Application to test if it is a VS-installation issue • Reboot the machine • Repaired the vs.net installation • IISReset • Remove the Web App from IIS
But mostly times, this solution didn't work. The most common solutions worked for me was:
a. Solution --> Properties Select multiple startup projects select Start action on the projects you need to debug. b. Clean up the solution and rebuild it.
Hope this helps someone, and if you found another solution for this kind of problem, please let a comment.
Upvotes: 1