Monobjc.Tools.Xcode.XCConfigurationList.WriteTo C# (CSharp) Method

WriteTo() public method

Writes this element to the writer.
public WriteTo ( ProjectWriter writer, string>.IDictionary map ) : void
writer ProjectWriter The writer.
map string>.IDictionary The map.
return void
        public override void WriteTo(ProjectWriter writer, IDictionary<IPBXElement, string> map)
        {
            writer.WritePBXElementPrologue (2, map, this);
            writer.WritePBXProperty (3, map, "buildConfigurations", this.BuildConfigurations);
            writer.WritePBXProperty (3, map, "defaultConfigurationIsVisible", this.DefaultConfigurationIsVisible);
            writer.WritePBXProperty (3, map, "defaultConfigurationName", this.DefaultConfigurationName);
            writer.WritePBXElementEpilogue (2);
        }