Autogenerate known colors and palettes

This will make it a bit easier to make changes
This commit is contained in:
Patrik Svensson
2020-08-03 14:06:49 +02:00
committed by Patrik Svensson
parent 5267ebda49
commit e5bf2bd498
19 changed files with 4808 additions and 145 deletions

19
eng/Generator/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using Generator.Commands;
using Spectre.Cli;
namespace Generator
{
public static class Program
{
public static int Main(string[] args)
{
var app = new CommandApp();
app.Configure(config =>
{
config.AddCommand<ColorGeneratorCommand>("colors");
});
return app.Run(args);
}
}
}