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 trian
I have read and implemented all the suggestions above, to no avail.
What worked for me is, i simply changed the controller action i was trying to break into to [HttpPost].
My issue was that i was trying to debug a method decorated with a [HttpGet] attribute routing to a different view and instead of hitting my break point, it keeps routing and displaying the return view.
Hope this helps someone!
Happy coding.