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