public PatchTask(ITaskInterface taskInterface, string baseDir, string patchedDir, string patchDir, ProgramSetting <DateTime> cutoff) : base(taskInterface) { this.baseDir = baseDir; this.patchedDir = patchedDir; this.patchDir = patchDir; this.cutoff = cutoff; }
public PatchTask(ITaskInterface taskInterface, string baseDir, string srcDir, string patchDir, ProgramSetting <DateTime> cutoff, CSharpFormattingOptions format = null) : base(taskInterface) { this.baseDir = baseDir; this.srcDir = srcDir; this.patchDir = patchDir; this.format = format; this.cutoff = cutoff; }