Make AsyncCommand a little more discoverable (#375)

This commit is contained in:
Loïc Sharma
2021-04-18 00:35:37 -07:00
committed by GitHub
parent f2b8afffb3
commit 23564612c1
3 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,7 @@ namespace Spectre.Console.Cli
/// <summary>
/// Base class for a command without settings.
/// </summary>
/// <seealso cref="AsyncCommand"/>
public abstract class Command : ICommand<EmptyCommandSettings>
{
/// <summary>

View File

@ -8,6 +8,7 @@ namespace Spectre.Console.Cli
/// Base class for a command.
/// </summary>
/// <typeparam name="TSettings">The settings type.</typeparam>
/// <seealso cref="AsyncCommand{TSettings}"/>
public abstract class Command<TSettings> : ICommand<TSettings>
where TSettings : CommandSettings
{