We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RunContinuationsAsynchronously
TaskCompletionSource
1 parent fa6a043 commit 1c167d0Copy full SHA for 1c167d0
src/PowerShellEditorServices/Services/PowerShell/Execution/SynchronousTask.cs
@@ -35,7 +35,7 @@ protected SynchronousTask(
35
CancellationToken cancellationToken)
36
{
37
Logger = logger;
38
- _taskCompletionSource = new TaskCompletionSource<TResult>(TaskCreationOptions.RunContinuationsAsynchronously);
+ _taskCompletionSource = new TaskCompletionSource<TResult>();
39
_taskRequesterCancellationToken = cancellationToken;
40
_executionCanceled = false;
41
}
0 commit comments