XConsole 1.1.0
See the version list below for details.
dotnet add package XConsole --version 1.1.0
NuGet\Install-Package XConsole -Version 1.1.0
<PackageReference Include="XConsole" Version="1.1.0" />
paket add XConsole --version 1.1.0
#r "nuget: XConsole, 1.1.0"
// Install XConsole as a Cake Addin #addin nuget:?package=XConsole&version=1.1.0 // Install XConsole as a Cake Tool #tool nuget:?package=XConsole&version=1.1.0
XConsole
Extended .NET console with coloring microsyntax, multiline pinning, write-to-position, etc. Safe for multitasking, safe for 9000+ lines, easy to use.
The main features are shown in the following image:
<br><br>
<a name="install"></a>Install
By Package Manager:
PM> Install-Package XConsole
By adding to *.csproj file:
<PackageReference Include="XConsole" Version="1.1.*" />
More ways to install see on NuGet Gallery. <br><br><br>
<a name="setup"></a>Setup
Simplest way to start using the XConsole is by adding using
to your code:
using Chubrik.XConsole;
namespace MyProject
{
using Console = XConsole;
...
After that you can write Console
as usual and get all the features of XConsole.
This trick is also great for upgrading your regular console application,
because the XConsole is backwards compatible with the standard Console.
Once you add using
, your application will not change how it works
unless you want to start using the XConsole features.
<br><br><br>
<a name="coloring"></a>Coloring
To colorize the text you need to add a prefix to a string.
The prefix consists of one or two letters denoting colors,
followed by a trailing `
character, after which the text immediately begins.
Let’s denote the text color letter as X
and the background color letter as Z
.
In this case, there are three prefix patterns: X`
to change text color,
Z `
to change background color, ZX`
to change both colors.
For example, to colorize text to green just add G`
prefix (G means green):
Console.WriteLine("G`This log message is colorized using microsyntax");
To make a multicolor message split it to parts with individual color prefixes
and pass them to single WriteLine
method.
Be sure that your messages will not be broken by other threads.
Console.WriteLine("C`It is easy ", "bW`to use many", "R` colors in ", "Y`one message");
The following table shows all possible colors and their letter designations:
<br>
NO_COLOR
XConsole supports the NO_COLOR
standard with an appropriate environment variable and property.
<br><br><br>
<a name="pinning"></a>Pinning
You can pin some text below regular log messages with the Pin
method.
Pinned text can be static or dynamic, contain one or more lines, and of course can be colorized.
Pin is resistant to line wrapping and to console buffer overflows (9000+ log lines).
Static pin
Console.Pin("Simple static pin"); // Simple static pin
Console.Pin("Y`Multicolor", " static pin"); // Multicolor static pin
Console.Pin("Multiline\nstatic pin"); // Multiline static pin
Dynamic pin
Console.Pin(() => "Simple pin, value=" + value); // Simple dynamic pin
Console.Pin(() => new[] { "Y`Multicolor", " pin, value=", "C`" + value }); // Multicolor dynamic pin
Console.Pin(() => new[] { "Multiline pin,\nvalue=", "C`" + value }); // Multiline dynamic pin
The dynamic pin will be automatically updated every time the Write
or WriteLine
methods are called.
You can also update a dynamic pin manually using the UpdatePin
method:
Console.UpdatePin(); // Update dynamic pin manually
To remove a pin, call the Unpin
method:
Console.Unpin(); // Remove pin
<br>
<a name="positioning"></a>Positioning
XConsole provides an XConsolePosition
structure, which is a position in the console area.
This is an important feature if you have a lot of log messages.
This structure is resistant to console buffer overflows (9000+ log lines)
and always points to the correct position in the console area.
Each Write
and WriteLine
method returns a start and end position.
You can save them and use later to rewrite the text or add text to the end of the message.
To do this, XConsolePosition
has its own Write
method, which returns a new end position.
NB! The end position of WriteLine
means the position
after the last character before the line break.
var (begin, end) = Console.WriteLine("Hello, World!"); // Write message and save positions
begin.Write("C`HELLO"); // Rewrite part of text
end = end.Write(" I'm here"); // Add text to the end and update end position
end.Write("Y`!");
<br><br>
You can also get or set XConsolePosition
of the cursor using the CursorPosition
property:
XConsolePosition position = Console.CursorPosition; // Get cursor position
Console.CursorPosition = new XConsolePosition(left: 15, top: 5); // Set cursor position
<br>
<a name="license"></a>License
The XConsole is licensed under the MIT license. <br><br>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net46 was computed. net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- No dependencies.
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on XConsole:
Package | Downloads |
---|---|
Chubrik.Kit
Small engine for various projects. Has advanced diagnostics and the most useful features. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.0 | 193 | 8/14/2024 |
1.4.11 | 74 | 7/30/2024 |
1.4.10 | 389 | 11/22/2023 |
1.4.9 | 439 | 8/20/2023 |
1.4.8 | 445 | 7/29/2023 |
1.4.7 | 660 | 4/7/2023 |
1.4.5 | 496 | 3/28/2023 |
1.4.4 | 557 | 1/29/2023 |
1.4.3 | 668 | 11/25/2022 |
1.4.2 | 590 | 11/9/2022 |
1.4.1 | 641 | 11/8/2022 |
1.4.0 | 648 | 11/5/2022 |
1.3.2 | 654 | 11/4/2022 |
1.3.1 | 660 | 10/30/2022 |
1.3.0 | 696 | 10/24/2022 |
1.2.3 | 695 | 10/22/2022 |
1.2.2 | 738 | 10/19/2022 |
1.2.1 | 654 | 10/17/2022 |
1.2.0 | 715 | 9/16/2022 |
1.1.6 | 863 | 9/16/2022 |
1.1.5 | 694 | 7/17/2022 |
1.1.4 | 721 | 5/12/2022 |
1.1.3 | 658 | 5/1/2022 |
1.1.2 | 680 | 4/29/2022 |
1.1.1 | 666 | 4/27/2022 |
1.1.0 | 632 | 4/27/2022 |
1.0.6 | 758 | 4/26/2022 |
1.0.5 | 792 | 4/21/2022 |
1.0.4 | 768 | 4/20/2022 |
1.0.3 | 735 | 4/14/2022 |
1.0.2 | 795 | 4/9/2022 |
1.0.1 | 760 | 3/30/2022 |
1.0.0 | 771 | 3/27/2022 |