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