Open scottcantwell opened 1 year ago
IWaitIndicator is not officially supported, it's in Microsoft.VisualStudio.Text.Internal.dll. Try officially supported IUIThreadOperationExecutor instead, it replaced it.
Thank You.
What would be the replacement for the WaitHandle.Wait() method?
using (var waitContext = WaitHelper.Wait(_waitIndicator, "HTML Copy", "Formatting document for copying"))
{
return accurateClassifier.GetAllClassificationSpans(parentSpan, waitContext.CancellationToken);
}
Getting an error message in the source code stating that the type or namespoace cannot be found for IWaitIndicator.
Where is IWaitIndicator located?