mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00

Also moves tests to `./test` which makes it possible for all test projects to share the same .editorconfig files and similar.
22 lines
503 B
C#
22 lines
503 B
C#
using Spectre.Console.Cli;
|
|
|
|
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,
|
|
};
|
|
}
|
|
}
|