mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-14 18:47:44 -05:00
Update to .NET 7 SDK (#1792)
This commit is contained in:
@@ -119,10 +119,10 @@ namespace Microsoft.SqlTools.Hosting.Protocol
|
||||
}
|
||||
}
|
||||
|
||||
public void WaitForExit()
|
||||
public async Task WaitForExitAsync()
|
||||
{
|
||||
this.endpointExitedTask = new TaskCompletionSource<bool>();
|
||||
this.endpointExitedTask.Task.Wait();
|
||||
await this.endpointExitedTask.Task.WaitAsync(CancellationToken.None);
|
||||
}
|
||||
|
||||
public async Task Stop()
|
||||
|
||||
Reference in New Issue
Block a user