예제 #1
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     string destinationExtension,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(Array.Empty <string>(), false, name, readFilesPattern, destinationExtension, processModules, null);
예제 #2
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     bool writeFiles,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(null, true, name, readFilesPattern, writeFiles, processModules, null);
예제 #3
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     string destinationExtension,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(null, true, name, readFilesPattern, destinationExtension, processModules, null);
예제 #4
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     Config <NormalizedPath> destinationPath,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(null, true, name, readFilesPattern, destinationPath, processModules, null);
예제 #5
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     Config <NormalizedPath> destinationPath,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(Array.Empty <string>(), false, name, readFilesPattern, destinationPath, processModules, null);
예제 #6
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     bool writeFiles,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(Array.Empty <string>(), false, name, readFilesPattern, writeFiles, processModules, null);
예제 #7
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     bool writeFiles,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null) =>
 bootstrapper.AddPipeline(null, true, name, readFilesPattern, writeFiles, processModules, transformModules);
예제 #8
0
 public static Bootstrapper AddSerialPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <IModule> inputModules     = null,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null,
     IEnumerable <IModule> outputModules    = null) =>
 bootstrapper.AddPipeline(null, false, name, inputModules, processModules, transformModules, outputModules);
예제 #9
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <string> dependencies,
     string readFilesPattern,
     Config <NormalizedPath> destinationPath,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(dependencies, false, name, readFilesPattern, destinationPath, processModules, null);
예제 #10
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <string> dependencies,
     string readFilesPattern,
     bool writeFiles,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(dependencies, false, name, readFilesPattern, writeFiles, processModules, null);
예제 #11
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     Config <NormalizedPath> destinationPath,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null) =>
 bootstrapper.AddPipeline(null, true, name, readFilesPattern, destinationPath, processModules, transformModules);
예제 #12
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <IModule> inputModules     = null,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null,
     IEnumerable <IModule> outputModules    = null) =>
 bootstrapper.AddPipeline(Array.Empty <string>(), true, name, inputModules, processModules, transformModules, outputModules);
예제 #13
0
 public static Bootstrapper AddSerialPipeline(
     this Bootstrapper bootstrapper,
     string name,
     string readFilesPattern,
     string destinationExtension,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null) =>
 bootstrapper.AddPipeline(null, false, name, readFilesPattern, destinationExtension, processModules, transformModules);
예제 #14
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <string> dependencies,
     string readFilesPattern,
     IEnumerable <IModule> processModules   = null,
     IEnumerable <IModule> transformModules = null,
     IEnumerable <IModule> outputModules    = null) =>
 bootstrapper.AddPipeline(dependencies, true, name, readFilesPattern, processModules, transformModules, outputModules);
예제 #15
0
        // Without dependencies

        public static Bootstrapper AddPipeline(this Bootstrapper bootstrapper, string name, IEnumerable <IModule> processModules) =>
        bootstrapper.AddPipeline(Array.Empty <string>(), true, name, (IEnumerable <IModule>)null, processModules, null, null);
예제 #16
0
 public static Bootstrapper AddPipeline(
     this Bootstrapper bootstrapper,
     string name,
     IEnumerable <string> dependencies,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(dependencies, true, name, (IEnumerable <IModule>)null, processModules, null, null);
예제 #17
0
        // Serial

        public static Bootstrapper AddSerialPipeline(
            this Bootstrapper bootstrapper,
            string name,
            IEnumerable <IModule> processModules) =>
        bootstrapper.AddPipeline(null, false, name, (IEnumerable <IModule>)null, processModules, null, null);
예제 #18
0
 public static Bootstrapper AddIsolatedPipeline(
     this Bootstrapper bootstrapper,
     string name,
     params IModule[] processModules) =>
 bootstrapper.AddPipeline(null, true, name, (IEnumerable <IModule>)null, processModules, null, null);