11 lines
248 B
C#
11 lines
248 B
C#
![]() |
// See https://aka.ms/new-console-template for more information
|
|||
|
|
|||
|
|
|||
|
using CliFx;
|
|||
|
|
|||
|
//Console.WriteLine("Hello, World!");
|
|||
|
|
|||
|
await new CliApplicationBuilder()
|
|||
|
.AddCommandsFromThisAssembly()
|
|||
|
.Build()
|
|||
|
.RunAsync(args);
|