I've installed VS 2015 (not the RC though I had that installed prior). I opened an existing solution that was working fine in VS 2013 and got the following error.
BC30652 Reference required to assembly 'System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the type 'EntityObject'. Add one to your project.
I added a reference to System.Data.Entity in the project as VS suggested and it worked. However, I'm wondering why this happened.
If I remove System.Data.Entity reference, VS 2013 still works but VS 2015 throws errors. The project does have a reference to System.Data.
Notes about the solution:
- Originally developed in VS 2013
- .NET 4.0
- Also has reference to System.Data
- Has 2 projects, a main (which causes the error) and a DAL
- The DAL has an Entity Data Model (.edmx)