Esempio n. 1
0
 internal Category AddStep(string installerValueId, Step step)
 {
     _steps.Add(installerValueId, step);
     return this;
 }
Esempio n. 2
0
 public Installer AddStepIfMissing(Step step)
 {
     if (!CoreManager.ServerCore.Config.HasValue(step.Path))
         AddStep(step);
     return this;
 }
Esempio n. 3
0
 public Category AddStep(string installerValueID, Step step)
 {
     _steps.Add(installerValueID, step);
     return this;
 }
Esempio n. 4
0
 public Installer AddStep(Step step)
 {
     _steps.Add(step);
     return this;
 }