Comment #3 on issue 140 by strombringer60k: SQLite.NET startup problem
http://code.google.com/p/migratordotnet/issues/detail?id=140
I think migrator.net is looking for version 1.0.61.0 and you have a
reference to
version 1.0.65.0. I had the same problem and had to put this configuration
block in
my machine.config to resolve it:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.SQLite"
publicKeyToken="db937bc2d44ff139"
culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-1.0.65.0"
newVersion="1.0.65.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
This block usually goes in the app.config of your starting project (if you
have a
WinForms or WPF project) but with the NAnt runner I could only get it to
work with
the machine.config
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"migratordotnet-devel" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/migratordotnet-devel?hl=en.