0

Currently SQLite has version 1.0.101.0. But its visual studio design time installer has trojen (as windows defender showing on windows 10 OS).

So, I want to install SQLite Entity Framework 1.0.99.0 in my visual studio 2013, winform project. This version has correct design time installer also.

I tried this command in package manager console.

install-Package System.Data.SQLite -version 1.0.99.0

and the result is the following.

Attempting to resolve dependency 'System.Data.SQLite.Core (≥ 1.0.99.0)'.
Attempting to resolve dependency 'System.Data.SQLite.Linq (≥ 1.0.99.0)'.
Attempting to resolve dependency 'System.Data.SQLite.EF6 (≥ 1.0.99.0)'.
Attempting to resolve dependency 'EntityFramework (≥ 6.0.0)'.
Installing 'System.Data.SQLite.Core 1.0.101.0'.
Successfully installed 'System.Data.SQLite.Core 1.0.101.0'.
Installing 'System.Data.SQLite.Linq 1.0.101.0'.
Successfully installed 'System.Data.SQLite.Linq 1.0.101.0'.
Installing 'EntityFramework 6.0.0'.
Successfully installed 'EntityFramework 6.0.0'.
Installing 'System.Data.SQLite.EF6 1.0.101.0'.
Successfully installed 'System.Data.SQLite.EF6 1.0.101.0'.
Installing 'System.Data.SQLite 1.0.99.0'.
Successfully installed 'System.Data.SQLite 1.0.99.0'.
Adding 'System.Data.SQLite.Core 1.0.101.0' to QuotMaster.
Successfully added 'System.Data.SQLite.Core 1.0.101.0' to QuotMaster.
Adding 'System.Data.SQLite.Linq 1.0.101.0' to QuotMaster.
Successfully added 'System.Data.SQLite.Linq 1.0.101.0' to QuotMaster.
Adding 'EntityFramework 6.0.0' to QuotMaster.
Successfully added 'EntityFramework 6.0.0' to QuotMaster.

Type 'get-help EntityFramework' to see all available Entity Framework commands.
Adding 'System.Data.SQLite.EF6 1.0.101.0' to QuotMaster.
Successfully added 'System.Data.SQLite.EF6 1.0.101.0' to QuotMaster.
Adding 'System.Data.SQLite 1.0.99.0' to QuotMaster.
Successfully added 'System.Data.SQLite 1.0.99.0' to QuotMaster.

It is installing the latest version. I am unable to install 1.0.99.0 version. I want to know how can I install this specific version.

1
  • 1
    If someone down votes this question then please add comment why you down vote this question. Commented Apr 29, 2016 at 14:31

1 Answer 1

2

I tried this solution, enter this command in package manager console.

install-package System.Data.Sqlite.Core -version 1.0.99.0
install-package System.Data.Sqlite.EF6 -version 1.0.99.0
install-package System.Data.Sqlite.Linq -version 1.0.99.0

this installed SQLite entity framework 6 - 1.0.99.0

Sign up to request clarification or add additional context in comments.

1 Comment

Worked for installing 1.0.105.0 con Visual Studio 2015.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.