mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
19 lines
429 B
C#
19 lines
429 B
C#
namespace Spectre.Console.Tests;
|
|
|
|
public static class Constants
|
|
{
|
|
public static string[] VersionCommand { get; } =
|
|
new[]
|
|
{
|
|
CliConstants.Commands.Branch,
|
|
CliConstants.Commands.Version,
|
|
};
|
|
|
|
public static string[] XmlDocCommand { get; } =
|
|
new[]
|
|
{
|
|
CliConstants.Commands.Branch,
|
|
CliConstants.Commands.XmlDoc,
|
|
};
|
|
}
|