Create Beautiful .NET Console Applications with Spectre.Console

Ugly Console Applications

On several occasions, I have had to create console applications that update the screen as time passes or some background task progresses. When I do, I often end up with something that looks like the following screenshot:

This works just fine but can certainly be improved. We can reformat the data better and also use a Console.Clear(); to repaint the screen between updates, giving us an output that looks like the following:

The problem with this approach arises when there is a lot of information that we want to present on the screen, and assembling the entire screen can quickly become very complicated.

To facilitate this process, I like to use Spectre.Console, which will help us create much more beautiful console applications. Let me show you how.

Installing Spectre.Console

You can get started improving the look of your .NET console applications simply by adding a reference to the Spectre.Console NuGet package.

Usage

One of the available features is the use of Markup, which allows you to send rich text to the console, as can be seen in the following example

string color;
switch (loadPercentage)
{
   case > 80:
      color = "red";
      break;
   case > 30:
      color = "yellow";
      break;
   default:
      color = "green";
      break;
}
AnsiConsole.Markup($"CPU usage [{color}]{loadPercentage}[/]%");

We can also create widgets like a Table with the following code

// Create a table
var table = new Table();

// Add some columns
table.AddColumn("Sensor");
table.AddColumn("Value");

// Add some rows
table.AddRow("CPU usage", $"[{color}]{loadPercentage}[/]%");

// Render the table to the console
AnsiConsole.Render(table);

Other exciting functionality is the Live components which allow you to modify only part of the displayed information without having to rewrite the entire screen.

You can also see the Live-Display feature demonstrated in the following code, which allows you to create a table and use changes to the underlying data to trigger it to refresh:

AnsiConsole.Live(computerInfo.Table).Start(ctx =>
{
    do
    {
        while (!Console.KeyAvailable)
        {
            computerInfo.GenerateFormattedOutput();
            ctx?.Refresh();
            Thread.Sleep(1000);
        }

    } while (Console.ReadKey(true).Key != ConsoleKey.Escape);
});

Inside of the method GenerateFormattedOutput we will update the table with

Table.UpdateCell(0, 1, $"[{color}]{loadPercentage}[/]%");

Code Example

You can access a project in the following Github repository, where you will find a complete example of the functionality shown in this post.

Conclusion

As you can see, it is pretty straightforward to use Spectre.Console to beautify your console applications. I have only scratched the surface of the most basic functionality here, so if you’d like learn more, you can find lots of examples, documentation, and sample screenshots on the Spectre.Console website.

Related Blog Posts

We hope you’ve found this to be helpful and are walking away with some new, useful insights. If you want to learn more, here are a couple of related articles that others also usually find to be interesting:

Our Gear Is Packed and We're Excited to Explore with You

Ready to come with us? 

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the form below. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

This field is for validation purposes and should be left unchanged.

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the form below. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

Montage Portal

Montage Furniture Services provides furniture protection plans and claims processing services to a wide selection of furniture retailers and consumers.

Project Background

Montage was looking to build a new web portal for both Retailers and Consumers, which would integrate with Dynamics CRM and other legacy systems. The portal needed to be multi tenant and support branding and configuration for different Retailers. Trailhead architected the new Montage Platform, including the Portal and all of it’s back end integrations, did the UI/UX and then delivered the new system, along with enhancements to DevOps and processes.

Logistics

We’ve logged countless miles exploring the tech world. In doing so, we gained the experience that enables us to deliver your unique software and systems architecture needs. Our team of seasoned tech vets can provide you with:

Custom App and Software Development

We collaborate with you throughout the entire process because your customized tech should fit your needs, not just those of other clients.

Cloud and Mobile Applications

The modern world demands versatile technology, and this is exactly what your mobile and cloud-based apps will give you.

User Experience and Interface (UX/UI) Design

We want your end users to have optimal experiences with tech that is highly intuitive and responsive.

DevOps

This combination of Agile software development and IT operations provides you with high-quality software at reduced cost, time, and risk.

Trailhead stepped into a challenging project – building our new web architecture and redeveloping our portals at the same time the business was migrating from a legacy system to our new CRM solution. They were able to not only significantly improve our web development architecture but our development and deployment processes as well as the functionality and performance of our portals. The feedback from customers has been overwhelmingly positive. Trailhead has proven themselves to be a valuable partner.

– BOB DOERKSEN, Vice President of Technology Services
at Montage Furniture Services

Technologies Used

When you hit the trails, it is essential to bring appropriate gear. The same holds true for your digital technology needs. That’s why Trailhead builds custom solutions on trusted platforms like .NET, Angular, React, and Xamarin.

Expertise

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

  • Project Management
  • Architecture
  • Web App Development
  • Cloud Development
  • DevOps
  • Process Improvements
  • Legacy System Integration
  • UI Design
  • Manual QA
  • Back end/API/Database development

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

Our Gear Is Packed and We're Excited to Explore with You

Ready to come with us? 

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the contact form. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

This field is for validation purposes and should be left unchanged.

Thank you for reaching out.

You’ll be getting an email from our team shortly. If you need immediate assistance, please call (616) 371-1037.