Fix for issue #1656
This commit is contained in:
parent
b5de686ba4
commit
a679f1dbb2
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ namespace Microsoft.DotNet.Cli.Build.Framework
|
|||
|
||||
Console.ForegroundColor =
|
||||
c < 0 ? color : // unknown, just use it
|
||||
_boldRecursion > 0 ? (ConsoleColor)(c & ~Light) : // ensure color is dark
|
||||
(ConsoleColor)(c | Light); // ensure color is light
|
||||
_boldRecursion > 0 ? (ConsoleColor)(c | Light) : // ensure color is light
|
||||
(ConsoleColor)(c & ~Light); // ensure color is dark
|
||||
}
|
||||
|
||||
private void SetBold(bool bold)
|
||||
|
|
Loading…
Reference in a new issue