Compile Views in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:33:07Zhttp://stackoverflow.com/feeds/question/383192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc12Compile Views in ASP.NET MVCJohn Oxley2008-12-20T10:51:00Z2009-09-18T08:33:06Z
<p>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?</p>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/383200#3832000Answer by maxnk for Compile Views in ASP.NET MVCmaxnk2008-12-20T11:04:12Z2008-12-20T11:09:27Z<p>You can use <strong><a href="http://msdn.microsoft.com/en-us/library/ms229863.aspx" rel="nofollow">aspnet_compiler</a></strong> for this:</p>
<p>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</p>
<p>where "<strong>/Virtual/Application/Path/Or/Path/In/IIS/Metabase</strong>" is something like this: "<strong>/MyApp</strong>" or "<strong>/lm/w3svc2/1/root/</strong>"</p>
<p>Also there is a <strong><a href="http://msdn.microsoft.com/en-us/library/ms164291.aspx" rel="nofollow">AspNetCompiler Task</a></strong> on MSDN, showing how to integrate aspnet_compiler with MSBuild:</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/383250#3832502Answer by bh213 for Compile Views in ASP.NET MVCbh2132008-12-20T12:12:35Z2008-12-20T12:12:35Z<p>Next release of ASP.NET MVC (available in January or so) should have MSBuild task that compiles views, so you might want to wait.</p>
<p>See <a href="http://weblogs.asp.net/scottgu/archive/2008/12/19/asp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx" rel="nofollow">announcement</a></p>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/383261#3832613Answer by bh213 for Compile Views in ASP.NET MVCbh2132008-12-20T12:25:29Z2008-12-20T12:25:29Z<p>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...</p>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/542944#54294427Answer by JarrettV for Compile Views in ASP.NET MVCJarrettV2009-02-12T19:52:21Z2009-02-12T19:58:03Z<p><em>From the readme word doc for RC1 (not indexed by google)</em></p>
<p><strong>ASP.NET Compiler Post-Build Step</strong></p>
<p>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: </p>
<pre><code><Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MvcBuildViews>true</MvcBuildViews>
</PropertyGroup>
</code></pre>
<p><strong>Note</strong> Enabling this feature adds some overhead to the build time.</p>
<p>You can update projects that were created with previous releases of MVC to include build-time validation of views by performing the following steps:</p>
<ol>
<li>Open the project file in a text editor.</li>
<li>Add the following element under the top-most <PropertyGroup> element:
<strong><MvcBuildViews>true</MvcBuildViews></strong></li>
<li><p>At the end of the project file, uncomment the <strong><Target Name="AfterBuild"></strong> element and modify it to match the following</p>
<p><Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)..\$(ProjectName)" />
</Target></p></li>
</ol>
http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/1443239#1443239-1Answer by Rookian for Compile Views in ASP.NET MVCRookian2009-09-18T08:33:06Z2009-09-18T08:33:06Z<p>is there an option for this feature in asp.net 3.5 without mvc?</p>