FluentColoredConsole 1.0.0
This package is now deprecated because it is no longer maintained, does not actually introduce fluent interface, and the fact that there are many other similar libraries that write colored strings to the console (Colors.Net is my recommendation).
dotnet add package FluentColoredConsole --version 1.0.0
NuGet\Install-Package FluentColoredConsole -Version 1.0.0
<PackageReference Include="FluentColoredConsole" Version="1.0.0" />
paket add FluentColoredConsole --version 1.0.0
#r "nuget: FluentColoredConsole, 1.0.0"
// Install FluentColoredConsole as a Cake Addin #addin nuget:?package=FluentColoredConsole&version=1.0.0 // Install FluentColoredConsole as a Cake Tool #tool nuget:?package=FluentColoredConsole&version=1.0.0
FluentColoredConsole
Write barely any C# code only to print text in foreground/background color to console!
Many colors were auto-generated to save up time.
FluentColoredConsole is a way to provide one-liner way to write text or objects to console with a specific background or foreground color, and you barely have to write anything...
FluentColoredConsole keeps the previous console colors after printing something.
Example
using CC = FluentColoredConsole.ColoredConsole;
Console.ForegroundColor = ConsoleColor.Red;
CC.Green.Write("Welcome to ");
CC.Background.Text.White.Green.Write("FluentColoredConsole");
Console.Write('!');
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.0.0 | 101 | 5/29/2024 |
This is the first version of FluentColoredConsole.