this problem's been driving me mad for a while now, I'm making use of the dynamic type in part of my library (targeting .NET Standard 1.2 & 2.0 + .NET Framework 3.5). I've added a reference to Microsoft.CSharp
which has added correctly to the .NET Standard versions of my project (Microsoft.CSharp
& System.Runtime.Binding
in v1.2, Microsoft.CSharp
in v2.0).
From browsing the web, it seems like this should be enough to get things working, but I keep getting the error:
Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create'
in the .NET Standard 2.0 build.
I've tried numerous project cleans & rebuilds, using various different versions of Microsoft.CSharp, manually added System.Runtime.Binding into v2.0, whatever I try it still keeps coming up with the same error. Does anyone have any further suggestions of things to try?
Kind regards James