VOOZH about

URL: https://www.nuget.org/packages/Trivial.Console/

⇱ NuGet Gallery | Trivial.Console 9.8.0




👁 Image
Trivial.Console 9.8.0

dotnet add package Trivial.Console --version 9.8.0
 
 
NuGet\Install-Package Trivial.Console -Version 9.8.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Trivial.Console" Version="9.8.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Trivial.Console" Version="9.8.0" />
 
Directory.Packages.props
<PackageReference Include="Trivial.Console" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Trivial.Console --version 9.8.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Trivial.Console, 9.8.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Trivial.Console@9.8.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Trivial.Console&version=9.8.0
 
Install as a Cake Addin
#tool nuget:?package=Trivial.Console&version=9.8.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Trivial.Console

This library includes a lot of useful rich command line controls.

Import

Add following namespace to your code file to use.

using Trivial.CommandLine;

Select

A beautiful list or table with customized style to the standard output stream so that user just need press the arrow buttons and ENTER in keyboard to select.

// Create an instance for adding items and setting options.
var col = new Trivial.Collection.SelectionData<string>();

// Add some items. For each item, you can set a hotkey, a display name and the data.
col.Add('a', "char a", "a");
col.Add('b', "char b", "b");
for (var i = 0; i < 120; i++)
{
 col.Add("num " + i, i.ToString());
}

// Create an options for display.
var options = new SelectionOptions
{
 // You can define a question string after the list.
 Question = "Please select one: ",

 // We can define the colors of the item selected.
 SelectedForegroundConsoleColor = ConsoleColor.White,
 SelectedBackgroundConsoleColor = ConsoleColor.Blue,

 // The selected item will also be displayed after the question string.
 // So you can define its color.
 ItemForegroundConsoleColor = ConsoleColor.Cyan,

 // At the end of the list, the tips will be displayed before user press any key.
 // There is a default value and you can customize it.
 // And you can disable it by set it as null.
 Tips = "Tips: You can use arrow key to select and press ENTER key to continue.",

 // Then you can define its color.
 TipsForegroundConsoleColor = ConsoleColor.Yellow,

 // You can define the prefix for the item and the one selected.
 SelectedPrefix = "> ",
 Prefix = " ",

 // You can define the column count for the list.
 Column = 5,

 // You can define the maximum rows to displayed.
 // A paging will be displayed if the count of the list is greater than it.
 MaxRow = 10,

 // Press ESC can cancel this selection.
 // But you can enable the manual way by set a manual question
 // so that user can type the words directly.
 ManualQuestion = "Type: "
};

// Write it to the standard output stream and wait for user selection.
var result = DefaultConsole.Select(col, options);

// You can get the result.
DefaultConsole.WriteLine("The result is {0}.", result.Value);

Progress

A progress bar in terminal that can present the latest state during the specific task running.

// Define an options that you can custom the style.
var progressStyle = new ConsoleProgressStyle
{
 ValueConsoleColor = ConsoleColor.White
};

// Ouput the component in console and get the progress instance to update.
var progress = DefaultConsole.WriteLine(progressStyle, "Processing");

// A time-consuming work here.
for (var i = 0; i <= 50; i++)
{
 await Task.Delay(10);

 // And report the progress updated.
 progress.Report(0.02 * i);
}

JSON

Following is a sample to format JSON into terminal.

var json = new Trivial.Text.JsonObjectNode();
// and then add some properties to json.
DefaultConsole.WriteLine(json);

Linear gradient

Output a string with linear gradient.

DefaultConsole.WriteLine(new LinearGradientConsoleStyle(
 ConsoleColor.Gray, // Fallback color.
 Color.FromArgb(15, 250, 250), // From color.
 Color.FromArgb(85, 168, 255)) // To color
 {
 Bold = true // Additional font style
 }, "Trivial Sample");
Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Framework net461 net461 is compatible.  net462 net462 is compatible.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 is compatible.  net481 net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
9.8.0 413 11/12/2025
9.7.0 353 8/7/2025
9.6.0 239 7/9/2025
9.5.0 273 6/1/2025
9.4.0 750 2/13/2025
9.3.0 224 1/26/2025
9.2.0 209 1/10/2025
9.1.0 190 12/24/2024
9.0.0 196 12/12/2024
9.0.0-preview6 249 12/4/2024
8.0.0 360 9/8/2024
7.2.0 2,080 11/16/2023 7.2.0 is deprecated because it is no longer maintained.
7.1.0 462 5/8/2023 7.1.0 is deprecated because it is no longer maintained.
7.0.0 657 1/20/2023 7.0.0 is deprecated because it is no longer maintained.
Loading failed