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"));
 }
Beispiel #3
0
        /* Iterates the given guid list and removes all guids that are not in allGuids dictionary.
         */
        static void RemoveMissingGuidsFromGuidList(PBX.GUIDList guidList, Dictionary <string, bool> allGuids)
        {
            List <string> guidsToRemove = null;

            foreach (var guid in guidList)
            {
                if (!allGuids.ContainsKey(guid))
                {
                    if (guidsToRemove == null)
                    {
                        guidsToRemove = new List <string>();
                    }
                    guidsToRemove.Add(guid);
                }
            }
            if (guidsToRemove != null)
            {
                foreach (var guid in guidsToRemove)
                {
                    guidList.RemoveGUID(guid);
                }
            }
        }
Beispiel #4
0
 public override void UpdateVars()
 {
     files = GetPropertyList("files");
 }
Beispiel #5
0
 public override void UpdateVars()
 {
     buildConfigs = GetPropertyList("buildConfigurations");
 }