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?
|
14
|
|
|
|
|
|
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:
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:
|
||||||||
|
|
|
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:
|
|||
|
|
|
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 |
||
|
|
|
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... |
||
|
|
|
is there an option for this feature in asp.net 3.5 without mvc? |
||
|
