public BridgeScriptHost(ICakeEngine engine, ICakeContext context, IExecutionStrategy strategy, ICakeReportPrinter reporter, ICakeArguments arguments) : base(engine, context) { Strategy = strategy; Reporter = reporter; Arguments = arguments; }
/// <summary> /// Initializes a new instance of the <see cref="BuildScriptHost"/> class. /// </summary> /// <param name="engine">The engine.</param> /// <param name="executionStrategy">The execution strategy.</param> /// <param name="context">The context.</param> /// <param name="reportPrinter">The report printer.</param> /// <param name="log">The log.</param> public BuildScriptHost( ICakeEngine engine, IExecutionStrategy executionStrategy, ICakeContext context, ICakeReportPrinter reportPrinter, ICakeLog log) : base(engine, executionStrategy, context, reportPrinter, log) { }
/// <summary> /// Initializes a new instance of the <see cref="BuildScriptHost"/> class. /// </summary> /// <param name="engine">The engine.</param> /// <param name="context">The context.</param> /// <param name="reportPrinter">The report printer.</param> /// <param name="log">The log.</param> public BuildScriptHost( ICakeEngine engine, ICakeContext context, ICakeReportPrinter reportPrinter, ICakeLog log) : base(engine, context) { _reportPrinter = reportPrinter; _log = log; }
public RunCommand( IFrostingContext context, IExecutionStrategy strategy, ICakeReportPrinter printer) { _context = context; _strategy = strategy; _printer = printer; }
public BuildScriptHost(ICakeEngine engine, ICakeReportPrinter reportPrinter) : base(engine) { _reportPrinter = reportPrinter; }