- Split into three projects: Library, Console, and Tests - Library compiles as QRScript.Interpreter to avoid conflicts
6 lines
202 B
C#
6 lines
202 B
C#
await new CliApplicationBuilder()
|
|
.AddCommand<RunCommand>()
|
|
.AddCommand<BuildCommand>()
|
|
.SetExecutableName("QR Script")
|
|
.Build()
|
|
.RunAsync();
|