Open GoogleCodeExporter opened 9 years ago
Perhaps the problem is that your version of SQLite does not match your Windows
7 x64.
Try using a DLL as an attachment to this comment.
Original comment by dima117a@gmail.com
on 12 Mar 2010 at 1:59
Attachments:
You mean, that I need to replace System.Data.SQLite.dll to x64 version in
migrator lib
directory and rebuild again?
Yes, I know that this way working fine. But I'am not understand why builded
application
looking into GAC instead of using local corresponding version.
Original comment by amolyb...@gmail.com
on 12 Mar 2010 at 4:33
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
Original comment by strombri...@gmail.com
on 12 Mar 2010 at 6:21
>> but with the NAnt runner I could only get it to work with
the machine.config
these settings can be specified in the App.config for NAnt
Original comment by dima117a@gmail.com
on 13 Mar 2010 at 11:07
@dima117a: Thanks :)
Original comment by strombri...@gmail.com
on 13 Mar 2010 at 11:51
Is it possible to have an example of the NAnt build file that works with SQLite
?
I'm able to user SqlServer as provider but all attempts to use SQLite failed
for a "missing file". I can't playt with the "machine.config" file so I wonder
if I'll be able to use Migrator.net
Original comment by raymond....@gmail.com
on 31 Aug 2010 at 3:17
Original issue reported on code.google.com by
it.advis...@gmail.com
on 11 Mar 2010 at 2:25