Elmah + System.Data.SQLite, Version=1.0.61.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139? or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0×80131040)
May 22nd, 2010
No comments
if your having this message, just add below code in your web.config
<dependentAssembly><assemblyIdentity name=”System.Data.SQLite” publicKeyToken=”db937bc2d44ff139″/><bindingRedirect oldVersion=”1.0.61.0″ newVersion=”1.0.66.0″/></dependentAssembly>
It tells you to redirect all of your SQLite DLL version 1.0.61.0 into somethin newer,for this example 1.0.66.0
For further info, check this
Recent Comments