Пример #1
0
        public static void WriteDict(StringBuilder sb, PBXElementDict el, int indent, bool compact,
                                     PropertyCommentChecker checker, GUIDToCommentMap comments)
        {
            sb.Append("{");

            if (el.Contains("isa"))
            {
                WriteDictKeyValue(sb, "isa", el["isa"], indent + 1, compact, checker, comments);
            }
            var keys = new List <string>(el.values.Keys);

            keys.Sort(StringComparer.Ordinal);
            foreach (var key in keys)
            {
                if (key != "isa")
                {
                    WriteDictKeyValue(sb, key, el[key], indent + 1, compact, checker, comments);
                }
            }
            if (!compact)
            {
                sb.Append("\n");
                sb.Append(GetIndent(indent));
            }
            sb.Append("}");
        }
Пример #2
0
 public override void UpdateVars()
 {
     projectReferences = new List <ProjectReference>();
     if (m_Properties.Contains("projectReferences"))
     {
         var el = m_Properties["projectReferences"].AsArray();
         foreach (var value in el.values)
         {
             PBXElementDict dict = value.AsDict();
             if (dict.Contains("ProductGroup") && dict.Contains("ProjectRef"))
             {
                 string group      = dict["ProductGroup"].AsString();
                 string projectRef = dict["ProjectRef"].AsString();
                 projectReferences.Add(ProjectReference.Create(group, projectRef));
             }
         }
     }
     buildConfigList = GetPropertyString("buildConfigurationList");
 }
Пример #3
0
		public static void WriteDict( StringBuilder sb, PBXElementDict el, int indent, bool compact, 
		                              PropertyCommentChecker checker, GUIDToCommentMap comments )
		{
			sb.Append( "{" );
            
			if (el.Contains( "isa" ))
				WriteDictKeyValue( sb, "isa", el["isa"], indent + 1, compact, checker, comments );
			var keys = new List<string>( el.values.Keys );
			keys.Sort( StringComparer.Ordinal );
			foreach (var key in keys)
			{
				if (key != "isa")
					WriteDictKeyValue( sb, key, el[key], indent + 1, compact, checker, comments );
			}
			if (!compact)
			{
				sb.Append( "\n" );
				sb.Append( GetIndent( indent ) );
			}
			sb.Append( "}" );
		}