Patrick Earl wrote:
>
> System.Resources.MissingManifestResourceException was unhandled
>   Message=Could not find any resources appropriate for the specified
> culture or the neutral culture.  Make sure
> "System.Data.SQLite.SR.resources" was correctly embedded or linked
> into assembly "System.Data.SQLite" at compile time, or that all the
> satellite assemblies required are loadable and fully signed.
> 

This issue appears to be caused by an incorrect resource name in the
mixed-mode assembly compiled with VS 2010.  The following line in the
project file "SQLite.Interop.2010.vcxproj" is incorrect:

<LogicalName>$(IntDir)System.Data.SQLite.%(Filename).resources</LogicalName>

It should read:

<LogicalName>System.Data.SQLite.%(Filename).resources</LogicalName>

This issue has been fixed in:

http://system.data.sqlite.org/index.html/ci/55f56ce508

Thanks for pointing out this problem.

--
Joe Mistachkin

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to