I have a visual studio 2013 update 4. I have a solution that includes multiple projects (all C#).
example:
- -MySolution
- -Webapi project ( references core project )
- -core project ( regular class library, contains nuget package for EntityFramework 6.1.2 )
If I build the solution and try to exec a webapi method it fails because EntityFramework.SqlServer.dll is not in the bin folder of the webapi project.
If however I build the core project alone, EntityFramework.SqlServer.dll is copied into the bin folder of the Webapi project and everything is fine.
Is there some bug or am I doing something wrong by building the solution and expecting the same result if I had built the projects in order?
It appears to be some Nuget oddity at first blush.
Thanks in advance for any help!