xsp - mono MVC3/MVC4 - libraries still required -


ubuntu 13.04. using mono experimental branch (3.0.6 (debian 3.0.6+dfsg-1~exp1~pre1);). i'm still being required upload these 5 dlls bin folder mvc applications:

  • system.web.mvc.dll
  • system.web.razor.dll
  • system.web.webpages.dll
  • system.web.webpages.deployment.dll
  • system.web.webpages.razor.dll

i'm running mono-fastcgi-server4/xsp v3.0.11 compiled source on nginx.

i've read multiple places of mono 2.12 copying these no longer required have on application (the razoronmono test solution). checked /usr/lib/mono/4.5 directory , dlls exist.

in case it's web.config razoronmono solution, here file:

<?xml version="1.0"?> <!--   more information on how configure asp.net application, please visit   http://go.microsoft.com/fwlink/?linkid=152368   --> <configuration>   <appsettings>     <add key="clientvalidationenabled" value="true"/>     <add key="unobtrusivejavascriptenabled" value="true"/>   </appsettings>   <system.web>     <compilation debug="true" targetframework="4.0">       <assemblies>         <add assembly="microsoft.csharp, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a"/>         <add assembly="system.web.applicationservices, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         <add assembly="system.web.dynamicdata, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         <add assembly="system.componentmodel.dataannotations, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         <add assembly="system.core, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089"/>         <add assembly="system.data.datasetextensions, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089"/>         <add assembly="system.xml.linq, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089"/>         <add assembly="system.web.extensions, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         <add assembly="system.web.abstractions, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>         <add assembly="system.web.routing, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/>       </assemblies>     </compilation>     <authentication mode="forms">       <forms loginurl="~/account/logon" timeout="2880"/>     </authentication>     <pages controlrenderingcompatibilityversion="4.0">       <namespaces>         <add namespace="system.web.helpers"/>         <add namespace="system.web.mvc"/>         <add namespace="system.web.mvc.ajax"/>         <add namespace="system.web.mvc.html"/>         <add namespace="system.web.routing"/>         <add namespace="system.web.webpages"/>       </namespaces>     </pages>   </system.web>   <system.webserver>     <validation validateintegratedmodeconfiguration="false"/>     <modules runallmanagedmodulesforallrequests="true"/>   </system.webserver>   <runtime>     <assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1">       <dependentassembly>         <assemblyidentity name="system.web.mvc" publickeytoken="31bf3856ad364e35"/>         <bindingredirect oldversion="1.0.0.0-2.0.0.0" newversion="3.0.0.0"/>       </dependentassembly>     </assemblybinding>   </runtime> </configuration> 


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

VBA function to include CDATA -