up vote 130 down vote favorite
69
share [g+] share [fb]

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?

link|improve this question

feedback

6 Answers

up vote 157 down vote accepted

From the readme word doc for RC1 (not indexed by google)

ASP.NET Compiler Post-Build Step

Currently, errors within a view file are not detected until run time. To let you detect these errors at compile time, ASP.NET MVC projects now include an MvcBuildViews property, which is disabled by default. To enable this property, open the project file and set the MvcBuildViews property to true, as shown in the following example:

<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <MvcBuildViews>true</MvcBuildViews>
  </PropertyGroup>

Note Enabling this feature adds some overhead to the build time.

You can update projects that were created with previous releases of MVC to include build-time validation of views by performing the following steps:

  1. Open the project file in a text editor.
  2. Add the following element under the top-most <PropertyGroup> element: <MvcBuildViews>true</MvcBuildViews>
  3. At the end of the project file, uncomment the <Target Name="AfterBuild"> element and modify it to match the following:
<Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
    <AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
</Target>
link|improve this answer
7  
If this should not work for your project, check if there isn't an <MvcBuildViews>false</MvcBuildViews> somewhere in your project file. It was overriding the new <MvcBuildViews> element I added on top of it. – Adrian Grigore Apr 20 '09 at 16:59
Any way to get this to work with Web Forms? – mxmissile Jul 28 '09 at 15:46
2  
@mxmissile: Scott Guthrie recommended adding a Web Deployment Project to your solution to get this sort of support in Web Application Projects: weblogs.asp.net/scottgu/archive/2006/09/22/… – Zhaph - Ben Duguid Jul 28 '09 at 20:06
3  
Make sure that EnableUpdateable is set to false or else the views wont be precompiled. <EnableUpdateable>false</EnableUpdateable> <MvcBuildViews>true</MvcBuildViews> (devcarl.posterous.com/…) – Carl Hörberg Apr 14 '10 at 8:41
I'm having an issue with this, where a default namespace is imported in the web.config, but the pages are failing to compile, any hints? – DevelopingChris Nov 24 '10 at 17:25
show 1 more comment
feedback

You can use aspnet_compiler for this:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v /Virtual/Application/Path/Or/Path/In/IIS/Metabase -p C:\Path\To\Your\WebProject -f -errorstack C:\Where\To\Put\Compiled\Site

where "/Virtual/Application/Path/Or/Path/In/IIS/Metabase" is something like this: "/MyApp" or "/lm/w3svc2/1/root/"

Also there is a AspNetCompiler Task on MSDN, showing how to integrate aspnet_compiler with MSBuild:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <Target Name="PrecompileWeb">
        <AspNetCompiler
            VirtualPath="/MyWebSite"
            PhysicalPath="c:\inetpub\wwwroot\MyWebSite\"
            TargetPath="c:\precompiledweb\MyWebSite\"
            Force="true"
            Debug="true"
        />
    </Target>
</Project>
link|improve this answer
This is out of date, see an excerpt from the readme doc below. – JarrettV Feb 12 '09 at 20:00
+1 for giving me the command line – Andrew Bullock Mar 1 '10 at 13:07
feedback

Also, if you use Resharper, you can active Solution Wide Analysis and it will detect any compiler errors you might have in aspx files. That is what we do...

link|improve this answer
3  
It's true it works for aspx files, but the solution-wide analysis does not include ascx files (user controls) – mookid8000 Jan 11 '09 at 11:12
1  
I believe it does in R# 5, but it's a huge resource hog for large projects (even on my 16GB home machine it's not worth using). – Andrew Jul 24 '10 at 13:47
1  
@Andrew / @mookid8000 -- R# will also catch errors that the compiler won't, such as missing/incorrect views and actions. R# will slow your PC down a bit (I find it fine on a large-ish project with 4GB ram and a hyperthreaded CPU) but I easily make back the time I spend waiting for it, and I end up doing fewer operations on my code as R# provides higher level operations that batch together the many steps I'd have to take to achieve the same task manually. Your project must be huge! – Drew Noakes Sep 2 '10 at 1:08
For large projects, "slow your PC down a bit" is an understatement. My build machine has 16GB of RAM and 8 cores (2 Xeons), and it just CRAWLS. I have a feeling R# just wasn't made for projects our size though ... e.g. our solution has ~30 projects, a couple Million LOC, and many hundreds of views. I love R# on our smaller projects (e.g. a few projects and no more than 50 views), but on our big one we always have to turn it off. – Jess Jun 26 '11 at 0:53
feedback

Next release of ASP.NET MVC (available in January or so) should have MSBuild task that compiles views, so you might want to wait.

See announcement

link|improve this answer
I was just going to say that! :) – Haacked Dec 31 '08 at 23:41
feedback

I don't know what viewengine you're using, but if you're using Razor, you might want to check out my blog post: Compile your asp.net mvc Razor views into a seperate dll

Should be possible to use that code for other viewengines as well, but haven't done & tested that yet

link|improve this answer
feedback

The answer given here works for some MVC versions but not for others.

The simple solution worked for MVC1 but on upgrading to MVC2 the views were no longer being compliled. This was due to a bug in the website project files. See this Haacked article.

See this: http://haacked.com/archive/2011/05/09/compiling-mvc-views-in-a-build-environment.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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