Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if Razor views could be compiled just like WebForm based views? Does it even make sense to compile Razor views and why would somebody want to do that?

share|improve this question

3 Answers

up vote 8 down vote accepted

Yes, you can. Take a look at the following post: Compile your asp.net mvc Razor views into a seperate dll

It's a "step-by-step" guide on how to compile your razor views into a separate dll. I don't know if that's what you aim to do but it'll definitely get you in the right direction.

share|improve this answer
1  
This answer is now outdated, you should now refer to this post: blog.davidebbo.com/2011/06/precompile-your-mvc-views-using.html – Quango Jun 13 '12 at 8:33

Edit:

Here is a blog post on this topic as well:

How to Detect Errors of Our ASP.NET MVC Views on Compile Time

To make your views to be compiled, do the following;

  1. Unload your project by right right clicking the project on the solution explorer in VS and clicking unload project
  2. right click the project which has been converted to unavailable project and click "Edit your_project_name.csproj" (that would be .vbproj if your project is VB project)
  3. see the following code;

    <!--There some lines of code here and I deleted them to get to the point quickly-->
    
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <MvcBuildViews>false</MvcBuildViews>
    

  4. change the MvcBuildViews tag value from false to true

  5. after that save it and reload your project.

after you build your solution to compile it, you will see that your view will be compiled too.

NOTE: to test it, break some code in one of your view on purpose and try to build. you will see that you'll get an error message.

share|improve this answer
I'll give this a try and see what happens. – Khalid Abuhakmeh Apr 2 '11 at 16:56
it should have worked. did you try it? – tugberk Apr 2 '11 at 17:00

Yes, it's possible. In fact, the best example I can think of would be email templating engines. If you compile and cache the template, then you can quickly rip off emails without having to go through the parsing all over again.

That's a good example of using Razor outside of MVC as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.