Has anyone succeeded in opening the pre-release System.Collections.Immutable from NuGet in F#?
I'm getting this error:
The type 'IEnumerable`1' is required here and is unavailable. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
Even though my project is .NET 4.5
Tried explicitly opening System.Runtime and that did not work either. I am referencing .NETCore\v4.5\System.Runtime.dll
IEnumerable<T>is normally defined in mscorlib.dll, so the fact that it's looking for it in System.Runtime.dll tells me this must be some sort of WinRT/Phone assembly. - Joel Mueller