Skip to content

Commit

Permalink
(cake-archive/frosting#68) Update to Cake 0.38.2
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Oct 15, 2020
1 parent e2ab8a7 commit 4d48801
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions 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 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 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 4d48801

Please sign in to comment.