Table of Contents

Class AndoCli

Namespace
Ando.Cli
Assembly
ando.dll

Main command-line interface handler for ANDO build system. Parses arguments, manages execution context, and runs build workflows.

public class AndoCli : IDisposable
Inheritance
AndoCli
Implements
Inherited Members

Constructors

AndoCli(string[])

Initializes the CLI with command-line arguments.

public AndoCli(string[] args)

Parameters

args string[]

Command-line arguments passed to the application.

Methods

Dispose()

Disposes resources, specifically closing the log file handle.

public void Dispose()

RunAsync()

Main entry point that routes to the appropriate command handler.

public Task<int> RunAsync()

Returns

Task<int>

Exit code: 0 for success, non-zero for various failure modes.