Jaahas.Spectre.Extensions
0.4.0
dotnet add package Jaahas.Spectre.Extensions --version 0.4.0
NuGet\Install-Package Jaahas.Spectre.Extensions -Version 0.4.0
<PackageReference Include="Jaahas.Spectre.Extensions" Version="0.4.0" />
paket add Jaahas.Spectre.Extensions --version 0.4.0
#r "nuget: Jaahas.Spectre.Extensions, 0.4.0"
// Install Jaahas.Spectre.Extensions as a Cake Addin #addin nuget:?package=Jaahas.Spectre.Extensions&version=0.4.0 // Install Jaahas.Spectre.Extensions as a Cake Tool #tool nuget:?package=Jaahas.Spectre.Extensions&version=0.4.0
About
Jaahas.Spectre.Extensions is a collection of extensions for Spectre.Console.Cli to simplify integration of the Spectre CommandApp
with Microsoft.Extensions.DependencyInjection.
Registering and Running a CommandApp
You can register a CommandApp
with your host builder as follows:
using Spectre.Console.Cli;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddSpectreCommandApp((IConfigurator options) => {
// Configure your command app here.
});
return await builder.BuildAndRunCommandAppAsync(args);
You can use a CommandApp<TDefaultCommand>
instead of a CommandApp
by specifying the generic TDefaultCommand
parameter when registering and running the command app:
using Spectre.Console.Cli;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddSpectreCommandApp<MyDefaultCommand>((IConfigurator options) => {
// Configure your command app here.
});
return await builder.BuildAndRunCommandAppAsync<MyDefaultCommand>(args);
The configured command app is capable of resolving services that the CommandApp
or CommandApp<TDefaultCommand>
registers with the Spectre ITypeRegistrar
, or that have been registered directly with the service collection. For example, you can inject services such as ILogger<T>
into your command classes.
You can also register the command app directly with an IServiceCollection
and run it directly against the IServiceProvider
built from the service collection if preferred.
Logging
You can register a logger that writes to the console using Spectre.Console's AnsiConsole
class as follows:
using Jaahas.Spectre.Extensions.Logging;
var builder = Host.CreateApplicationBuilder(args);
builder.Logging.ClearProviders()
.AddSpectreConsole();
It is recommended that you clear existing providers when adding the Spectre console logger to avoid duplicate log entries from the default console logger.
You can configure the colours and styles used when writing log messages by calling the AddSpectreConsole
overload that configures the registered SpectreConsoleLoggerOptions
:
using Jaahas.Spectre.Extensions.Logging;
var builder = Host.CreateApplicationBuilder(args);
builder.Logging.ClearProviders()
.AddSpectreConsole(options => {
options.CriticalStyle = "bold magenta on green";
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. 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 | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Spectre.Console.Cli (>= 0.49.1)
-
net8.0
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Spectre.Console.Cli (>= 0.49.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.