3

Since new Entity Framework version I got from nuget broke some of my tests, in one of my projects I want to make sure the Entity Framework version installed as reference for the entire solution is the version 4.1.10331.0

What's the best way to find out I'm referencing entity framework 4.1.10331.0 since nuget installs it per solution? Reading packages.config? Going through all the assemblies in current domain?

leppie
  • 115,091
  • 17
  • 196
  • 297
Rod
  • 401
  • 2
  • 9
  • http://stackoverflow.com/questions/3377821/entity-framework-how-can-i-tell-what-version-i-am-using – Davide Piras Sep 06 '11 at 06:07
  • What do you see if you find the references files in the project, right click, properties and check the version numbers in there? – Davide Piras Sep 06 '11 at 06:07
  • If I go and install version 4.1.10715.0 dll reference is the same version and runtime version – Rod Sep 06 '11 at 10:47
  • This article can help you (EF Version History): http://msdn.microsoft.com/en-US/data/jj574253 – nZeus Jul 10 '13 at 12:43

1 Answers1

3

I ended up getting the assembly version since I didn't find another way.

Rod
  • 401
  • 2
  • 9