asp.net - Could not load file or assembly 'DotNetOpenAuth.Core' Version=4.1.0.0 -
i keep getting error message whenever try run web forms application.
could not load file or assembly 'dotnetopenauth.core, version=4.1.0.0, culture=neutral, publickeytoken=2780ccd10d57b246' or 1 of dependencies. system cannot find file specified.
i these details in assembly binding log:
assembly manager loaded from: c:\windows\microsoft.net\framework\v4.0.30319\clr.dll running under executable c:\program files (x86)\iis express\iisexpress.exe --- detailed error log follows. === pre-bind state information === log: displayname = dotnetopenauth.core, version=4.1.0.0, culture=neutral, publickeytoken=2780ccd10d57b246 (fully-specified) log: appbase = file:///e:/myapplication/ log: initial privatepath = e:\my\re subversion\my application v2\myapplication\bin calling assembly : microsoft.aspnet.membership.openauth, version=1.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35. === log: bind starts in default load context. log: using application configuration file: e:\\myapplication\web.config log: using host configuration file: c:\users\user\documents\iisexpress\config\aspnet.config log: using machine configuration file c:\windows\microsoft.net\framework\v4.0.30319\config\machine.config. log: post-policy reference: dotnetopenauth.core, version=4.1.0.0, culture=neutral, publickeytoken=2780ccd10d57b246 log: attempting download of new url file:///c:/users/user/appdata/local/temp/temporary asp.net files/vs/fd2e9b7a/f0d1e515/dotnetopenauth.core.dll. log: attempting download of new url file:///c:/users/user/appdata/local/temp/temporary asp.net files/vs/fd2e9b7a/f0d1e515/dotnetopenauth.core/dotnetopenauth.core.dll. log: attempting download of new url file:///e://myapplication/bin/dotnetopenauth.core.dll. log: attempting download of new url file:///e://myapplication/bin/dotnetopenauth.core/dotnetopenauth.core.dll. log: attempting download of new url file:///c:/users/user/appdata/local/temp/temporary asp.net files/vs/fd2e9b7a/f0d1e515/dotnetopenauth.core.exe. log: attempting download of new url file:///c:/users/user/appdata/local/temp/temporary asp.net files/vs/fd2e9b7a/f0d1e515/dotnetopenauth.core/dotnetopenauth.core.exe. log: attempting download of new url file:///e:/myapplication/bin/dotnetopenauth.core.exe. log: attempting download of new url file:///e:/myapplication/bin/dotnetopenauth.core/dotnetopenauth.core.exe.
i have updated entityframework lead me reinstall microsoft.aspnet.membership.openauth, seemed work fine later on, not sure did caused error.
here's details web.config
:
<dependentassembly> <assemblyidentity name="dotnetopenauth.core" publickeytoken="2780ccd10d57b246" /> <bindingredirect oldversion="1.0.0.0-4.0.0.0" newversion="4.0.0.0" /> </dependentassembly> <dependentassembly> <assemblyidentity name="dotnetopenauth.aspnet" publickeytoken="2780ccd10d57b246" /> <bindingredirect oldversion="0.0.0.0-4.1.0.0" newversion="4.1.0.0" /> </dependentassembly> <dependentassembly> <assemblyidentity name="entityframework" publickeytoken="b77a5c561934e089" culture="neutral" /> <bindingredirect oldversion="0.0.0.0-5.0.0.0" newversion="5.0.0.0" /> </dependentassembly>
i ended installing package package manager console.
Comments
Post a Comment