Compile Views in ASP.NET MVC

前端 未结 8 1352
故里飘歌
故里飘歌 2020-11-22 02:54

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?

8条回答
  •  耶瑟儿~
    2020-11-22 03:21

    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.

    Hope this helps.

提交回复
热议问题