public async Task ResetAsync(bool waitForPrompt = true)
        {
            await _host.ExecuteDteCommandAsync(DteReplResetCommand).ConfigureAwait(continueOnCapturedContext: false);

            if (waitForPrompt)
            {
                await WaitForReplPromptAsync().ConfigureAwait(continueOnCapturedContext: false);
            }
        }