Example #1
0
 public UserConfig(IConfigInitializer cfg, IXProject project)
     : this(cfg?.Config, project)
 {
     if (cfg?.DDNS != null)
     {
         NSBuffer = cfg.DDNS.NSBuffer;
         DDNS     = cfg.DDNS;
     }
     Log = cfg.Log;
 }
Example #2
0
 public UserConfig(IConfigInitializer cfg)
     : this(cfg, null)
 {
 }
Example #3
0
 public TargetsFile(string file, string rootpath, IConfigInitializer ini)
     : this(file, rootpath, ini.Config.Type)
 {
     Config = new UserConfig(ini);
 }