I'm using dotConnect for SQLite 5.2.146 for my C# project (Windows 10 x64 Pro, VS 2010 SP1 Pro, .NET 4.0, Entity Framework 6)
Some time ago I've installed version 5.3.464 to make some perfomance testings (I've just run installer, it performed uninstallation of previous version and then installed new version without any errors). At that stage everything was ok.
Yesterday I've decided to move back to previous version. Again I've simply run installer, it performed uninstallation (at the end it was some error, but description was saying that it is not critical error and asked to click ok button, so I didn't make a screenshot) and then installed version 5.2.146 (without errors).
And after that trying to compile my project results in error:
Here is my licences.licx fileDescription: Exception occurred creating type 'Devart.Data.SQLite.SQLiteConnection, Devart.Data.SQLite, Version=5.2.146.0, Culture=neutral, PublicKeyToken=09af7300eec23701' System.TypeInitializationException: The type initializer for 'Devart.Data.SQLite.d' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Devart.Data, Version=5.0.938.0, Culture=neutral, PublicKeyToken=09af7300eec23701' or one of its dependencies. The system cannot find the file specified. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Devart.Data, Version=5.0.1256.0, Culture=neutral, PublicKeyToken=09af7300eec23701' or one of its dependencies. The system cannot find the file specified. ---> System.IO.FileNotFoundException: Could not load file or assembly 'file:///C:\Program Files (x86)\Devart\dotConnect\SQLite\Devart.Data.dll' or one of its dependencies. The system cannot find the file specified.
File:C:\Users\Leo.TOPAZ1\Desktop\SysTypesDB.DAL_no_notification\SysTypesDB.DAL.SQLITE.EF\Properties\licenses.licx
Line: 1
Project: SysTypesDB.DAL.SQLITE.EF
Actually "C:\Program Files (x86)\Devart\dotConnect\SQLite\Devart.Data.dll" exists and have version 5.0.938 (which corresponds to installed dotConnect 5.2.146)Devart.Data.SQLite.SQLiteConnection, Devart.Data.SQLite, Version=5.2.146.0, Culture=neutral, PublicKeyToken=09af7300eec23701
But what is "Devart.Data, Version=5.0.1256.0" - is it some kind of junk from dotConnect 5.3.464 installation?
How can I get rid of that compillation error?
Thank you.