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
Autocompletion on fsi fails on certain types with dotnet sdk 3.1.202. This doesn't appear to appear on 3.1.102 however
Repro steps
Provide the steps required to reproduce the problem:
open dotnet fsi in a terminal.
type the following
openSystem;;
lettime= TimeSpan.FromHours(1.0);;
Now type time. and try to autocomplete with TAB key. And observe the following error:
stdin(0,1): error FS1108: The type 'IAsyncOperationWithProgress`2' is required here and is unavailable. You must add a reference to assembly 'Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null'.
Expected behavior
Should now throw the FS1108 error and should autocomplete the TimeSpan object.
Actual behavior
stdin(0,1): error FS1108: The type 'IAsyncOperationWithProgress`2' is required here and is unavailable. You must add a reference to assembly 'Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null'.
Known workarounds
Use dotnet sdk 3.1.102
Related information
Provide any related information (optional):
Operating system: Windows, Linux
.NET Runtime kind: .NET Core
Editing Tools: Terminal, (I got the bug in Jetbrains Rider as well, working with fsx files )
The text was updated successfully, but these errors were encountered:
Autocompletion on fsi fails on certain types with dotnet sdk 3.1.202. This doesn't appear to appear on 3.1.102 however
Repro steps
Provide the steps required to reproduce the problem:
dotnet fsi
in a terminal.time.
and try to autocomplete withTAB
key. And observe the following error:Expected behavior
Should now throw the FS1108 error and should autocomplete the
TimeSpan
object.Actual behavior
Known workarounds
Use dotnet sdk 3.1.102
Related information
Provide any related information (optional):
The text was updated successfully, but these errors were encountered: