I am running dev on VS2010 SP1, and when I run Install-Package EntityFramework, I get EF 4.3.1 installed by Nuget. Is there a way that I can restrict the version to EF 4.1? I would like to examine them differentially. Please help!
-Thanks,
Ram
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default Nuget will install the latest version of a given package.
But you can install any previous version of a nuget package (which are available on nuget.org) within the package manager console specifying the Version option like:
You can check the available versions of EF here.