Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi Friends,

Need your help,

Currently i build my intranet project but have like this error "could not load file or assembly Microsoft.Practices.EnterpriseLibrary.configuration.design, version=4.0.0.0,...."

Kindly please help me to solve this issue,

Thanks for your help,

Best Regards
G.Renga
Posted

Add this DLL in your Web.config file.

For Example:

C#
<blockquote class="quote"><div class="op">Quote:</div> <compilation debug="true">
      <assemblies>
        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
      </assemblies>
    </compilation></blockquote>



Thanks
AARIF
 
Share this answer
 
Comments
Renga.g 7-Jul-15 5:27am    
hi aarif, yes those dll files already have in my web.config file

actually this error came after i upgrade version from 3.5 to 4.
I suggest you to check also NuGet packages for your solution and make sure you have latest versions of all the packages you use
 
Share this answer
 
Please check if 4.0 Framework supports this functionality and a reference of it instead of 3.5 dll, because it is required by the implemented solution
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900