vote up 1 vote down star

When trying to debug a ASP.NET MVC app, the breakpoints in my controllers arent getting hit. When entering debug mode they just show an empty red circle with a warning triangle instead of the normal full circle. This is strange because debugging was working fine until now, and no configuration changes have been made in my environment for a while.

I have seen this question and had a look at my modules view and the correct ones aren't being loaded, however I'm not sure how to remedy this. Also all the relevant pdb files are in the bin folder of the site.

Any suggestions on how to fix this?

Cheers!

EDIT: The app is running as a local site on IIS7 and I'm debugging with VS 2008

flag

This is VS 2008 by the way – Darko Z Apr 9 at 3:30
Only happened to me when I modified code and put breakpoints without recompiling... Make sure you rebuild your solution. – Daniel Apr 9 at 3:32
I have tried this already, thanks. – Darko Z Apr 9 at 3:55

5 Answers

vote up 0 vote down

Things to try:

  1. Clean the Solution, then rebuild it.
  2. The fix suggested here.
  3. Another suggested here.
  4. And another suggested here.
link|flag
Thanks for the links but unfortunately none of them solved my problem. – Darko Z Apr 9 at 3:56
vote up 0 vote down

The following has worked for me most of the time when I had this problem:

Find where your projects dll cache is being held (usually in ASP.NET Temprorary Files). Then close VS, do an IISRESET /stop (if you're using IIS), delete all the files in dll cache. Do an IISRESET, start VS, open your project and rebuild it.

link|flag
I gave it a try but the same problem persists, no modules for my web project in the modules view. – Darko Z Apr 9 at 3:54
vote up 0 vote down

If you mouse hover over the empty circle it should give you a clue why the break point isn't being hit.

link|flag
I am aware of this. This is how I found that the symbols weren't being loaded as stated in the question. – Darko Z Apr 9 at 3:54
vote up 2 vote down check

Ok so after 4 hours wasted, I find that setting my web project as the startup project solves the issue! This surely must be a bug...

I hope I save someone out there half a day :)

link|flag
If this is what solved it, accept it as your answer :) – SirDemon Apr 9 at 8:30
wont let me accept my own answer for 48 hours :) will do as soon as i can... – Darko Z Apr 10 at 7:55
vote up 0 vote down

I had the same problem. Check here: Tools->Options->Debugging

Check the script check box. Run the application.

I got installation corrupt message box, so did a repair of vs 2008, and its working now.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.