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
ValueTaskSource can be configured to not run continuations in the current context (or scheduler).
That takes precedence over what awaiter wants.
For example an IO.Pipe can be configured to run callbacks/continuations in default/threadpool context. In such case immediate users of the IO.Pipe do not need to do ConfigureAwait(false).
Runtime async always considers what awaiter wants. In this case it results in testcase hangs infinitely.