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.
1 parent a866723 commit 225a18fCopy full SHA for 225a18f
src/Cli/dotnet/commands/dotnet-test/TestingPlatformCommand.Help.cs
@@ -16,6 +16,7 @@ public IEnumerable<Action<HelpContext>> CustomHelpLayout()
16
{
17
yield return (context) =>
18
19
+ var originalOutputColor = Console.ForegroundColor;
20
Console.WriteLine("Waiting for options and extensions...");
21
22
Run(context.ParseResult);
@@ -34,7 +35,7 @@ public IEnumerable<Action<HelpContext>> CustomHelpLayout()
34
35
WriteModulesToMissingOptionsToConsole(moduleToMissingOptions);
36
37
Console.WriteLine();
- Console.ForegroundColor = ConsoleColor.White;
38
+ Console.ForegroundColor = originalOutputColor;
39
};
40
}
41
0 commit comments