Skip to content

Commit d1347ee

Browse files
committed
Merge branch 'main' of https://github.com/dotnet/diagnostics into juhoyosa/release-stable
2 parents 4f0c957 + 6d5ca45 commit d1347ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.Diagnostics.Repl/ConsoleService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,9 +589,9 @@ private void EnsureNewEntry()
589589

590590
bool IConsoleService.SupportsDml => false;
591591

592-
void IConsoleService.WriteDml(string text) => throw new NotSupportedException();
592+
void IConsoleService.WriteDml(string text) => WriteOutput(OutputType.Normal, text);
593593

594-
void IConsoleService.WriteDmlExec(string text, string _) => throw new NotSupportedException();
594+
void IConsoleService.WriteDmlExec(string text, string _) => WriteOutput(OutputType.Normal, text);
595595

596596
CancellationToken IConsoleService.CancellationToken { get; set; }
597597

0 commit comments

Comments
 (0)