Compile Views in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:33:07Z http://stackoverflow.com/feeds/question/383192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc 12 Compile Views in ASP.NET MVC John Oxley 2008-12-20T10:51:00Z 2009-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#383200 0 Answer by maxnk for Compile Views in ASP.NET MVC maxnk 2008-12-20T11:04:12Z 2008-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>&lt;Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; &lt;Target Name="PrecompileWeb"&gt; &lt;AspNetCompiler VirtualPath="/MyWebSite" PhysicalPath="c:\inetpub\wwwroot\MyWebSite\" TargetPath="c:\precompiledweb\MyWebSite\" Force="true" Debug="true" /&gt; &lt;/Target&gt; &lt;/Project&gt; </code></pre> http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/383250#383250 2 Answer by bh213 for Compile Views in ASP.NET MVC bh213 2008-12-20T12:12:35Z 2008-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#383261 3 Answer by bh213 for Compile Views in ASP.NET MVC bh213 2008-12-20T12:25:29Z 2008-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#542944 27 Answer by JarrettV for Compile Views in ASP.NET MVC JarrettV 2009-02-12T19:52:21Z 2009-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>&lt;Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; &lt;PropertyGroup&gt; &lt;MvcBuildViews&gt;true&lt;/MvcBuildViews&gt; &lt;/PropertyGroup&gt; </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 &lt;PropertyGroup> element: <strong>&lt;MvcBuildViews>true&lt;/MvcBuildViews></strong></li> <li><p>At the end of the project file, uncomment the <strong>&lt;Target Name="AfterBuild"></strong> element and modify it to match the following</p> <p>&lt;Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'"> &lt;AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)..\$(ProjectName)" /> &lt;/Target></p></li> </ol> http://stackoverflow.com/questions/383192/compile-views-in-asp-net-mvc/1443239#1443239 -1 Answer by Rookian for Compile Views in ASP.NET MVC Rookian 2009-09-18T08:33:06Z 2009-09-18T08:33:06Z <p>is there an option for this feature in asp.net 3.5 without mvc?</p>