When trying to set a breakpoint in a razor view I get the message "This is not a valid location for a breakpoint".
Breakpoints work in JS and everywhere else they're supposed to. Intellisense and auto-complete also work in Razor.
Using - VS 2012 Update 4 - .Net Framework 4.5.1 - MVC 5.1
Sample Code
<div>
@{
var testString = string.Empty;
}
</div>