Пример #1
0
 public FileReference(
     Bam.Core.TokenizedString path,
     EFileType type,
     Project project,
     bool explicitType      = false,
     ESourceTree sourceTree = ESourceTree.NA)
     :
     this()
 {
     this.Path         = path;
     this.Type         = type;
     this.Project      = project;
     this.SourceTree   = sourceTree;
     this.ExplicitType = explicitType;
 }
Пример #2
0
 public FileReference(
     Bam.Core.TokenizedString path,
     EFileType type,
     Project project,
     bool explicitType      = false,
     ESourceTree sourceTree = ESourceTree.NA,
     string relativePath    = null)
     :
     base(project, path.Parse(), "PBXFileReference", type.ToString(), project.GUID, explicitType.ToString(), sourceTree.ToString(), relativePath)
 {
     this.Path         = path;
     this.Type         = type;
     this.SourceTree   = sourceTree;
     this.ExplicitType = explicitType;
     this.RelativePath = relativePath;
 }
Пример #3
0
 public FileReference(
     Bam.Core.TokenizedString path,
     EFileType type,
     Project project,
     bool explicitType = false,
     ESourceTree sourceTree = ESourceTree.NA)
     : this()
 {
     this.Path = path;
     this.Type = type;
     this.Project = project;
     this.SourceTree = sourceTree;
     this.ExplicitType = explicitType;
 }