I use MVC4 with mono 3.2.3 and I notice that if I create an error in Razor cshtml file:
@for(int i = 0; i < 8aaaa; i++)
Following error occurs:
System.InvalidOperationException
The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched: ...
I remember that on Windows there's a smart Razor compilation error message. How could I enable such feature under mono platform?
Related question: MVC5 Autofac: The view found at was not created