Skip to content

Commit

Permalink
Merge pull request dotnet#1660 from Peter-Schneider/fix/issue-1656
Browse files Browse the repository at this point in the history
Fix for issue #1656
  • Loading branch information
Piotr Puszkiewicz committed Mar 14, 2016
2 parents 605cc54 + a679f1d commit 00be1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/Microsoft.DotNet.Cli.Build.Framework/AnsiConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ private void SetColor(ConsoleColor color)

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)
Expand Down

0 comments on commit 00be1e5

Please sign in to comment.