Beispiel #1
0
 public override void UpdateVars()
 {
     buildConfigList  = GetPropertyString("buildConfigurationList");
     name             = GetPropertyString("name");
     productReference = GetPropertyString("productReference");
     phases           = GetPropertyList("buildPhases");
     dependencies     = GetPropertyList("dependencies");
 }
Beispiel #2
0
 public override void UpdateVars()
 {
     children = GetPropertyList("children");
     path     = GetPropertyString("path");
     name     = GetPropertyString("name");
     if (name == null)
     {
         name = path;
     }
     if (path == null)
     {
         path = "";
     }
     tree = FileTypeUtils.ParseSourceTree(GetPropertyString("sourceTree"));
 }
 public override void UpdateVars()
 {
     this.children = base.GetPropertyList("children");
     this.path = base.GetPropertyString("path");
     this.name = base.GetPropertyString("name");
     if (this.name == null)
     {
         this.name = this.path;
     }
     if (this.path == null)
     {
         this.path = "";
     }
     this.tree = FileTypeUtils.ParseSourceTree(base.GetPropertyString("sourceTree"));
 }
Beispiel #4
0
        private static void RemoveMissingGuidsFromGuidList(GUIDList guidList, Dictionary <string, bool> allGuids)
        {
            List <string> list = (List <string>)null;

            foreach (string key in (IEnumerable <string>)guidList)
            {
                if (!allGuids.ContainsKey(key))
                {
                    if (list == null)
                    {
                        list = new List <string>();
                    }
                    list.Add(key);
                }
            }
            if (list == null)
            {
                return;
            }
            foreach (string guid in list)
            {
                guidList.RemoveGUID(guid);
            }
        }
Beispiel #5
0
 public override void UpdateVars()
 {
     files = GetPropertyList("files");
 }
Beispiel #6
0
 public override void UpdateVars()
 {
     buildConfigs = GetPropertyList("buildConfigurations");
 }
 public override void UpdateVars()
 {
     this.files = base.GetPropertyList("files");
 }
 public override void UpdateVars()
 {
     this.buildConfigs = base.GetPropertyList("buildConfigurations");
 }
 public override void UpdateVars()
 {
     this.buildConfigList = base.GetPropertyString("buildConfigurationList");
     this.name = base.GetPropertyString("name");
     this.phases = base.GetPropertyList("buildPhases");
     this.dependencies = base.GetPropertyList("dependencies");
 }