Quick Fix
You have to tell ASP.NET not to shadow copy the project assemblies to the ASP.NET temporary folders file by updating your web.config with the following entry:
<configuration>
<system.web>
<hostingEnvironment shadowCopyBinAssemblies="false" />
</system.web>
</configuration>
Then restart your application.

Devesh OmarPosted Jun 19, 2014, 8:25 AM
|Thanks for this information