public static string ImportModule(this ICakeContext context) { if (context == null) { throw new System.ArgumentNullException(nameof(context)); } return(FSCommand.ImportModule()); }
public static System.Version Version(this ICakeContext context) { if (context == null) { throw new System.ArgumentNullException(nameof(context)); } return(FSCommand.Version()); }
public static int Collect(this ICakeContext context, Abstract.ICollectOptions collectArgs, Abstract.ILoggingOptions log = null) { return(FSCommand.Collect(collectArgs, MakeLog(context, log))); }
public static int Prepare(this ICakeContext context, Abstract.IPrepareOptions prepareArgs, Abstract.ILoggingOptions log = null) { return(FSCommand.Prepare(prepareArgs, MakeLog(context, log))); }