namespace MsbuildAnalyzer.Models;
///
/// Options for executing a target command.
///
public record TargetOptions
{
///
/// The working directory for the command.
///
public string? Cwd { get; init; }
///
/// Command-line arguments to pass to the command.
///
public string[]? Args { get; init; }
}