ConsoleSpinner 2.1.0

dotnet add package ConsoleSpinner --version 2.1.0
NuGet\Install-Package ConsoleSpinner -Version 2.1.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="ConsoleSpinner" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ConsoleSpinner --version 2.1.0
#r "nuget: ConsoleSpinner, 2.1.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.
// Install ConsoleSpinner as a Cake Addin
#addin nuget:?package=ConsoleSpinner&version=2.1.0

// Install ConsoleSpinner as a Cake Tool
#tool nuget:?package=ConsoleSpinner&version=2.1.0

ConsoleSpinner

This library is a simple console spinner for .NET Core Console applications. It can be used for synchronous blocks of code or async tasks.

[demo.gif]

Usage

The library adds a new helper function ConsoleEx.WriteSpinner(). This function returns an IDisposable that will display the spinner until it is disposed, or you can pass in a task and it will display the spinner until the task is complete.

This allows the spinner to be used in two ways, with long running synchronous code or with async tasks.

Usage with synchronous code

With synchronous code you can simply wrap the code in a using statement and the spinner will be displayed until the code block is complete.

using(_ = Console.WriteSpinner())
{
	// long running non-task based code 
}

Usage with async Tasks

With async tasks you simply pass the task into ConsoleEx.WriteSpinner() and it will animate the spinner until the task is complete.

var task = Task.Delay(delay);
lock (Console.Out)
{
    ConsoleEx.WriteSpinner(task);
    Console.WriteLine();
}

Using Optiosn

You can control the behavior of the spinner by passing in a SpinnerOptions object to ConsoleEx.WriteSpinner().

Options.Animation

You can pass in a different animation style by passing in the Options to ConsoleEx.WriteSpinner().

using(_ = Console.WriteSpinner(new SpinnerOptions() { Animation = Animations.Args }))
{
	// long running non-task based code 
}

Predefined animations are: The spinner can be displayed in the following styles: | Style | Description | | ----- | ----------- | | Animations.Lines | Displays a line spinner | | Animations.Dots | Displays a dot spinner | | Animations.Boxes| Displays a box spinner | | Animations.Arrows | Displays an arrow spinner | | Animations.VerticalBars | Displays a vertical bar spinner | | Animations.HorizontalBars | Displays a horizontal bar spinner | | Animations.Triangles | Displays a triangle spinner | | Animations.QuarterBalls | Displays a quarter ball spinner | | Animations.HalfBalls | Displays a half ball spinner | | Animations.Balloons | Displays a balloon spinner | | Animations.Arcs | Displays an arc spinner | | Animations.BouncingBalls | Displays a bouncing ball spinner | | Animations.Wave | Displays a wave spinner | | Animations.Braille | Displays a braille spinner |

You can also defined your own animations by passing in a array of equal width strings. The animation will cycle through the strings.

using(var _ = ConsoleEx.WriteSpinner(new SpinnerOptions() { Animation= new [] { "`  ", "`` ", "```", " ``", "  `", "   "}))
{
	...long running code..
}

Options.Theme

The options.Theme is an array of ConsoleColors which will be used for each frame. The spinner will cycle through the colors.

using(_ = Console.WriteSpinner(new SpinnerOptions() { Theme = Themes.RedWhiteBlue }))
{
	// long running non-task based code 
}

Options.Delay

Delay controls how many ms between each frame of the animation. The default is 100ms.

Options.Success, Options.Failure, Options.SuccessColor, Options.FailureColor

These options all you to define the string for success, failure, and the color for each.

Options.CustomFrame

You can customize the spinner by passing in a CustomFrame function. The custom frame function takes in the current frame, and a boolean for whether the task is done or not. It returns a string that represents the frame.

Arguments are

  • frame - the current frame of the animation
  • done - a boolean indicating whether the task is done or not Return:
  • A formatted string representing the frame.

NOTE: The width of the output and position of the frame in the output needs to be consistent for the animation to look correct.

i = 10;
using (var _ = ConsoleEx.WriteSpinner(new SpinnerOptions() { CustomFrame: (frame, done) => $"{frame} Counter: {i} " }))
{
    for (; i > 0; i--)
    {
        // simulate doing stuff...
        await Task.Delay(1000);
    }
}

This allows you to have the spinner act like a progress bar.

Animation Notes

The animation is asynchronously using Console.SetPosition to position the cursor to the location of the animation so that it can change it.

While there are active spinners you should put a lock(Console.Out) around any Console output API call, preventing any background animations from interacting with the current cursor position.

Example:

using (var _ = ConsoleEx.WriteSpinner())
{
    ...long running code..
    // lock writing to the console while a spinner is potentially running 
    lock(Console.Out)
        Console.Write(...);
    ...long running code..
}
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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
2.1.0 167 5/2/2023
2.0.0 127 5/2/2023
1.1.0 123 5/1/2023
1.0.0 138 5/1/2023