What effect does the new precompile during publishing option have on MVC4 applications?

Using the ASP.NET precompiler can have the following impact on your MVC app:

  • If you have anything in App_Code, it will be precompiled into a DLL before deployment. Without precompiling, this would happen on the fly by the ASP.NET runtime.
  • If you choose the option to not make your pages updateable (i.e. uncheck the first checkbox in the advanced settings dialog), it will also precompile your views (ASPX and Razor) instead of compiling those dynamically at runtime as well. The default (checked) setting of “Allow precompiled site to be updateable” allows you to update your view content without needing to rebuild the entire project.

If you don’t have any files in App_Code and you want your site to remain updateable, it doesn’t seem to do much.

Leave a Comment