コード例 #1
0
 public TaskSession(
     ILogger <TaskSession> log,
     TargetTree targetTree,
     CommandArguments args,
     ITaskFactory taskFactory,
     IFluentInterfaceFactory fluentFactory,
     IBuildPropertiesSession properties)
     : base(log, properties, args, targetTree, taskFactory, fluentFactory)
 {
     HasFailed = true;
 }
コード例 #2
0
 public TaskContextInternal(
     ILogger log,
     IBuildPropertiesSession taskContextProperties,
     CommandArguments args,
     TargetTree targetTree,
     ITaskFactory taskFactory,
     IFluentInterfaceFactory fluentFactory)
     : base(log, taskFactory, fluentFactory, targetTree, taskContextProperties)
 {
     Args = args;
 }
コード例 #3
0
 public TaskContext(
     ILogger log,
     ITaskFactory taskFactory,
     IFluentInterfaceFactory fluentFactory,
     TargetTree targetTree,
     IBuildPropertiesSession properties)
     : base(properties)
 {
     _log           = log;
     _taskFactory   = taskFactory;
     _fluentFactory = fluentFactory;
     TargetTree     = targetTree;
 }
コード例 #4
0
 public FlubuSession(
     ILogger <FlubuSession> log,
     TargetTree targetTree,
     CommandArguments args,
     IScriptFactory scriptFactory,
     ITaskFactory taskFactory,
     IFluentInterfaceFactory fluentFactory,
     IBuildPropertiesSession properties,
     IBuildSystem buildServers)
     : base(log, properties, args, targetTree, buildServers, taskFactory, fluentFactory)
 {
     HasFailed     = true;
     ScriptFactory = scriptFactory;
 }