Compile Views in ASP.NET MVC
Compile Views in ASP.NET MVC
Compile Views in ASP.NET MVC
Re: Compile Views in ASP.NET MVC
I frankly would recommend the **RazorGenerator** nuget package. That way your views have a `.designer.cs` file generated when you save them and on top of getting compile time errors for you views, they are also precompiled into the assembly (= faster warmup) and Resharper provides some additional help as well.
To use this include the **RazorGenerator** nuget package in you ASP.NET MVC project and install the "**Razor Generator**" extension under item under **Tools → Extensions and Updates**.
We use this and the overhead per compile with this approach is much less. On top of this I would probably recommend **.NET Demon by RedGate** which further reduces compile time impact substantially.
To use this include the **RazorGenerator** nuget package in you ASP.NET MVC project and install the "**Razor Generator**" extension under item under **Tools → Extensions and Updates**.
We use this and the overhead per compile with this approach is much less. On top of this I would probably recommend **.NET Demon by RedGate** which further reduces compile time impact substantially.