Note that there are some explanatory texts on larger screens.

plurals
  1. PODeploying MVC2 application what DLL's should be already present
    text
    copied!<p>I've just deployed my first MVC2 application to our Local Webserver (it's in our network so it can be fixed/changed as needed). The server was originally built with .Net 2, and our network admin installed the .Net 4, so I'm not 100% sure if everything is in the correct places.</p> <p>What I'm wondering is should all the System.Web.* etc DLL's (.Net Framework Version 4) already be in the GAC on this server or should they be included explicitly(copy local=true) with my project (Bin) folder?</p> <p>OR </p> <p>Has something gone wrong with the installation and .Net should be repaired/reinstalled?</p> <p>In the Gac on this server there are only .net 2.0 assemblies as far as I can tell.</p> <p>When I start invoking AspNet membership stuff inside my project things fall over with the following errors.</p> <p>Line 30 is easily rectified by including the MVC DLL in my Bin Directory. I'm just not sure how far I should go? Do I include everything? </p> <p>At the bottom of the YSOD </p> <p>Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1 </p> <p>So I guess my Site is running .Net4</p> <pre><code>Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. Source Error: Line 29: &lt;add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; **** Line 30: &lt;add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /&gt; **** Line 31: &lt;add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /&gt; Line 32: &lt;/assemblies&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload