9 lines
203 B
C#
9 lines
203 B
C#
|
using System.CommandLine;
|
|||
|
using Canon.Generator.Extensions;
|
|||
|
|
|||
|
RootCommand rootCommand = new("Canon Compiler Source Generator");
|
|||
|
|
|||
|
rootCommand.AddGenerateCommand();
|
|||
|
|
|||
|
await rootCommand.InvokeAsync(args);
|