Search code examples
c#idynamicobject

Missing System.Scripting in VS.Net 2010-Where can I find it?


I installed VS.Net 2010 to play around with some of the new C# features and I'm trying to use the IDynamicObject interface but I can't because it can't find the System.Scripting namespace. What do I need to install to get this?

Thanks!


Solution

  • I think possibly this has been renamed:

    http://msdn.microsoft.com/en-us/library/system.dynamic.idynamicmetaobjectprovider(VS.100).aspx

    but perhaps someone more in tune with this knows for sure. Just sharing in case it helps unblock you.

    (I know the DLR is in .Net 4.0 and VS2010-Beta2, since they just release matching updates of Iron Python/Ruby that run atop it.)