Exemplo n.º 1
0
 public Configuration(
     Bam.Core.EConfiguration config)
 {
     this.IsA               = "XCBuildConfiguration";
     this.Name              = config.ToString();
     this.Config            = config;
     this.PreBuildCommands  = new Bam.Core.StringArray();
     this.PostBuildCommands = new Bam.Core.StringArray();
     this.BuildFiles        = new Bam.Core.Array <BuildFile>();
 }
Exemplo n.º 2
0
 public Configuration(
     Bam.Core.EConfiguration config,
     Project project,
     Target target)
     :
     base(project, config.ToString(), "XCBuildConfiguration", project.GUID, (target != null) ? target.GUID : string.Empty)
 {
     this.Config            = config;
     this.PreBuildCommands  = new Bam.Core.StringArray();
     this.PostBuildCommands = new Bam.Core.StringArray();
     this.BuildFiles        = new Bam.Core.Array <BuildFile>();
 }