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.
2 parents 4f0c957 + 6d5ca45 commit d1347eeCopy full SHA for d1347ee
src/Microsoft.Diagnostics.Repl/ConsoleService.cs
@@ -589,9 +589,9 @@ private void EnsureNewEntry()
589
590
bool IConsoleService.SupportsDml => false;
591
592
- void IConsoleService.WriteDml(string text) => throw new NotSupportedException();
+ void IConsoleService.WriteDml(string text) => WriteOutput(OutputType.Normal, text);
593
594
- void IConsoleService.WriteDmlExec(string text, string _) => throw new NotSupportedException();
+ void IConsoleService.WriteDmlExec(string text, string _) => WriteOutput(OutputType.Normal, text);
595
596
CancellationToken IConsoleService.CancellationToken { get; set; }
597
0 commit comments