I have a ASP.NET WebSite project in my solution, there are other class library projects that are all targeted to .NET 4.0. It works fine on every developer's computer except for one.
Linq in .NET 4.0 did not have a Prepend
extension method so we had created one ourselves, on one developer's computer the website crashes with a runtime error stating that the Prepend is ambigous between our namespace and Linq's namespace.
Prepend was first introduced in .NET 4.7.1 which we are not targeting. We checked the bin directory, System.Core.dll is 4.0. We checked all other DLLs' manifests to make sure they are dependent on System.Core 4.0.
What else do we need to check?