slandau
slandau

Reputation: 24052

System.Data.Linq, how come I can't reference it?

I can reference this in one project, but not the other.

System.Data.Linq

They are both targeting .NET 4.0. Why can't I reference it in one?

Upvotes: 0

Views: 1830

Answers (3)

Jackson Pope
Jackson Pope

Reputation: 14640

Probably because the failing project is missing an assembly reference to System.Data.Linq

Upvotes: 1

Rob
Rob

Reputation: 5286

You probably still need to reference the assembly in the other project.

Upvotes: 1

fearofawhackplanet
fearofawhackplanet

Reputation: 53388

Because you haven't added a reference

Upvotes: 5

Related Questions