Joan Venge
Joan Venge

Reputation: 330972

How to fix "Could not load file or assembly System.Core" error?

System.Core shows as missing in References. I removed and tried to add it again but I can't see System.Core in the list of default assemblies. It complains about this for Linq.

This project compiled OK with the prior VS version, but fails with VS 2013. Is this moved or how else would I miss this DLL?

enter image description here

Upvotes: 0

Views: 1212

Answers (2)

AFract
AFract

Reputation: 9680

3.0 is not enough, System.Core (LINQ) was added in 3.5. Please upgrade target framework in project properties.

Upvotes: 1

Daniel A. White
Daniel A. White

Reputation: 190945

System.Core was added with .NET 3.5.

Upvotes: 1

Related Questions