Search code examples
asp.netasp.net-mvcmsbuild

Compile Views in ASP.NET MVC


I want an msbuild task to compile the views so I can see if there are compile time errors at well... compile time. Any ideas?


Solution

  • 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.