You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, in some edge cases, it's possible that we would incorrectly report the following type of issue in scripting
error CS0433: The type 'Console' exists in both 'System.Console, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
and 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
This has been fixed in Roslyn in this PR dotnet/roslyn@43a72d9 however, to enable this we'll need to use reflection as the API that solves the problem (.WithTopLevelBinderFlags(BinderFlags.IgnoreCorLibraryDuplicatedTypes))) is internal.
The text was updated successfully, but these errors were encountered:
At the moment, in some edge cases, it's possible that we would incorrectly report the following type of issue in scripting
This has been fixed in Roslyn in this PR dotnet/roslyn@43a72d9 however, to enable this we'll need to use reflection as the API that solves the problem (
.WithTopLevelBinderFlags(BinderFlags.IgnoreCorLibraryDuplicatedTypes))
) is internal.The text was updated successfully, but these errors were encountered: