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

* Adding a dark mode * Adding reference for types to summary pages * Adding API Reference * Adding modifiers to methods/fields/etc * Minimizing files input * Caching a lot of the output pages * Cache only for each execution * Adding API references to existing docs
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using Demo.Commands;
|
|
using Demo.Commands.Add;
|
|
using Demo.Commands.Run;
|
|
using Demo.Commands.Serve;
|
|
using Spectre.Console.Cli;
|
|
|
|
namespace Demo;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
var app = new CommandApp();
|
|
app.Configure(config =>
|
|
{
|
|
config.SetApplicationName("fake-dotnet");
|
|
config.ValidateExamples();
|
|
config.AddExample(new[] { "run", "--no-build" });
|
|
|
|
// Run
|
|
config.AddCommand<RunCommand>("run");
|
|
|
|
// Add
|
|
config.AddBranch<AddSettings>("add", add =>
|
|
{
|
|
add.SetDescription("Add a package or reference to a .NET project");
|
|
add.AddCommand<AddPackageCommand>("package");
|
|
add.AddCommand<AddReferenceCommand>("reference");
|
|
});
|
|
|
|
// Serve
|
|
config.AddCommand<ServeCommand>("serve")
|
|
.WithExample(new[] { "serve", "-o", "firefox" })
|
|
.WithExample(new[] { "serve", "--port", "80", "-o", "firefox" });
|
|
});
|
|
|
|
return app.Run(args);
|
|
}
|
|
}
|