示例#1
0
文件: Category.cs 项目: habb0/Bluedot
 internal Category AddStep(string installerValueId, Step step)
 {
     _steps.Add(installerValueId, step);
     return this;
 }
示例#2
0
文件: Installer.cs 项目: habb0/IHI-1
 public Installer AddStepIfMissing(Step step)
 {
     if (!CoreManager.ServerCore.Config.HasValue(step.Path))
         AddStep(step);
     return this;
 }
示例#3
0
文件: Category.cs 项目: habb0/IHI
 public Category AddStep(string installerValueID, Step step)
 {
     _steps.Add(installerValueID, step);
     return this;
 }
示例#4
0
文件: Installer.cs 项目: habb0/IHI-1
 public Installer AddStep(Step step)
 {
     _steps.Add(step);
     return this;
 }