Skip to content
This repository has been archived by the owner on Nov 28, 2020. It is now read-only.

Commit

Permalink
Merge branch 'devlead-feature/gh-68' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Jun 26, 2020
2 parents e480cf8 + bc4259c commit 9179238
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Cake.Frosting.Tests/Fakes/NullConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ public void ResetColor()

public ConsoleColor ForegroundColor { get; set; }
public ConsoleColor BackgroundColor { get; set; }
public bool SupportAnsiEscapeCodes => false;
}
}
4 changes: 2 additions & 2 deletions src/Cake.Frosting/Cake.Frosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.37.0" />
<PackageReference Include="Cake.Common" Version="0.37.0" />
<PackageReference Include="Cake.Core" Version="0.38.2" />
<PackageReference Include="Cake.Common" Version="0.38.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="images\" />
Expand Down
5 changes: 5 additions & 0 deletions src/Cake.Frosting/Internal/DefaultConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ public ConsoleColor BackgroundColor
set => Console.BackgroundColor = value;
}

/// <summary>
/// Gets if console supports ANSI escape codes.
/// </summary>
public bool SupportAnsiEscapeCodes => false;

/// <summary>
/// Writes the text representation of the specified array of objects to the
/// console output using the specified format information.
Expand Down

0 comments on commit 9179238

Please sign in to comment.