Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 - Breakpoints in Razor view files (".cshtml") not being loaded

When setting a break point in a razor view (".cshtml") the circle which is normally red turns to a red hollow circle when the debugger is started. When hovering over the hollow circle it displays the following:

The breakpoint will not currently be hit. No symbols have been loaded for this document

It's only razor view files, with normal ".cs" files there are no problems.

There are a lot of other questions which have proposed solutions for the same "error" message as above but none has actually worked. What I have tried:

  • Cleaning the solution
  • Ensuring that in the properties -> Web window, under the "debugger" section that ASP.NET is checked
  • Ensuring that in the properties -> Build window, that both Define DEBUG and TRACE are checked and in the output section of the same window, clicking the advanced button, the debug info is set to "Full"
  • Rebuilding everything a million times.
  • Using VS with administrator rights (I do that normally anyway)
  • Restarting system
  • Restarting site in IIS
  • Ensuring that the Active Solution Configuration is set to Debug
  • Checked that in the web.config file, compilation debug="true"

Edit: I'm referring to the razor code of course, not html or even javascript. E.g. setting a break point in a foreach loop in razor

Edit2: I'm able to step through the razor code if I set a breakpoint in a controller, as the the debugger will go through the view before being "done". I'm still not able to actually set breakpoints in razor view files though. The hollow circle is still showing and it won't get hit.

Edit3: Killing the "IIS Working Process" which points to w3wp.exe temporary solved the problem. I was able to debug razor views again. A few hours later, the same problem again.

like image 229
Force444 Avatar asked Jun 11 '14 12:06

Force444


2 Answers

I found out that toggling the Build Action = Content / Compile (in the property window) on the .cshtml file (with a build in between) let me set break points again.

like image 191
Sturla Avatar answered Oct 04 '22 22:10

Sturla


This is what your looking for.

You need to compile your views at compile time not asp.net runtime.

https://stackoverflow.com/a/16052993/955831

like image 21
Jason Foglia Avatar answered Oct 04 '22 21:10

Jason Foglia