Ejemplo n.º 1
0
        static async Task Main(string[] args)
        {
#if SENTRY || !DEBUG
            using var _ = SentrySdk.Init(ConfigureSentryOptions);
#endif
            await CoconaLiteApp.RunAsync <Program>(args);
        }
Ejemplo n.º 2
0
 static async Task Main(string[] args)
 {
     await CoconaLiteApp.RunAsync <ClrmdRun>(args);
 }
Ejemplo n.º 3
0
 static async Task Main(string[] args)
 => await CoconaLiteApp.RunAsync <Diagnostics>(args);
Ejemplo n.º 4
0
 public static async Task Main(string[] args)
 {
     await CoconaLiteApp.RunAsync <Program>(args);
 }
Ejemplo n.º 5
0
 public static Task Main(string[] args) =>
     CoconaLiteApp.RunAsync<Program>(args, options =>
     {
         options.TreatPublicMethodsAsCommands = false;
     });