I have a solution with lots of class library projects and a MVC 4 website using them. I tried to upgrade .NET Framework from 4 to 4.5 and upgrade those class library projects, that each are using EF 4.4 models, to EF 5. But I'm getting "Multiple versions were encountered".
Here's what I done so far:
- Changed target framework to 4.5 on all projects in solution
- Updated reference to EF 5 on all projects using Nuget package manager
- Changed my Web.Config in MVC project "section name="entityFramework... 5.0.0.0.."
- Checked if multiple .edmx files were generated, but there wasnt.
- "Cleaned build" + Restart didnt help
- Searched whole solution for 4.4.0.0 but all were 5.0.0.0
- ProviderManifestToken="2008" on all, same as before I started
What might be wrong here? I'm running out of ideas.