asp.net mvc - Could not load Ninject assembly in Web.config -


i trying debug application @ time error shown below:

could not load file or assembly 'ninject, version=3.0.0.0, culture=neutral, publickeytoken=c7192dc5380945e7' or 1 of dependencies. system cannot find file specified. 

i have added 1 of assembly reference in web.config file as

<dependentassembly>         <assemblyidentity name="ninject" publickeytoken="c7192dc5380945e7" culture="neutral" />         <bindingredirect oldversion="0.0.0.0-3.0.0.0" newversion="3.0.0.0" />       </dependentassembly> 

then debugging doesn't show error.

my problem solved because there no need of adding ninject package & there libraries on side of application. have uninstalled packages of ninject.

sorry wasting time.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -