I am trying to debug a web app, and am having some rather odd issues with VS. First thing I do is attach to the w3wp process and set break points in code that DOES execute. The thing is, none of the break points are hit. Thinking that I must have done something wrong, I stopped the debugger and when I went to reattach, only 6 of my 54 processes are shown and none of them are w3wp (and yes I have both show processes from all users and show processes from all sessions check). Restarting VS (or the computer) does nothing. Any one have any ideas on how to get VS to work?
Share
While attached to the process,
This will show you all the dlls that are loaded by the process you have attached to. If the dlls that you require are not there, refresh the page in your browser and see if they are added to the list.
If they are not in the list
You attached to the wrong w3wp.exe process.
If they are in the list
Hopefully, that will get it all working again.