harry
harry

Reputation: 51

'Microsoft.CSharp.dll' and 'System.Dynamic.dll' not getting added to .net 3.5 solution

I am using .NET 3.5 and FacebookSDK_V4.2.1. I am not able to add references to Microsoft.CSharp.dll' and 'System.Dynamic.dll' to my solution. How can I add these dll's to .NET 3.5 solution

Upvotes: 1

Views: 3191

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1503419

System.Dynamic.dll is part of .NET 4, to start with... you may be able to install the Dynamic Language Runtime version for .NET 3.5, but you certainly won't be able to use the dynamic feature from C# 4.

I haven't used the Facebook SDK myself, but it sounds like you either need a version which targets .NET 3.5 instead of .NET 4, or you need to use .NET 4 for your application.

Upvotes: 1

Related Questions