tags:

views:

1237

answers:

2

is there any .net4 version of system.data.sqlite?

i get this error:
Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.

what is "additional configuration information"?
or is there another version?

+4  A: 

According to the forums of PhxSoftware:

It's not high on my priority list right at the moment. When VS2010 comes closer to release I'll be updating the library to work with it.

Although the message was posted in october 2009 there are some workarounds.

Further there seems to be an updated (temporary) version specially for .NET 4:

Rhapsody
+7  A: 
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
  </startup>
</configuration>
Darin Dimitrov
worked after removing"<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>" and adding that.
Behrooz