public BuildTargetAdvanced(BuildTargetSimple buildTargetSimple, ITranspileCommand transpileCommand, IBuildScopeCommand buildScopeCommand, IWriteCommand writeCommand)
 {
     this.buildTargetSimple = buildTargetSimple;
     this.transpileCommand  = transpileCommand;
     this.buildScopeCommand = buildScopeCommand;
     this.writeCommand      = writeCommand;
 }
Exemplo n.º 2
0
 public BuildTarget(string targetName, string filePrefix, Build build, MetadataLogService metadataLogService, ITranspileCommand transpileCommand, ICompileCommand compileCommand, IASTCommand astCommand, IBuildScopeCommand buildScopeCommand, IWriteCommand writeCommand)
 {
     this.targetName         = targetName;
     this.build              = build;
     this.metadataLogService = metadataLogService;
     this.filePrefix         = filePrefix;
     this.transpileCommand   = transpileCommand;
     this.compileCommand     = compileCommand;
     this.astCommand         = astCommand;
     this.buildScopeCommand  = buildScopeCommand;
     this.writeCommand       = writeCommand;
 }