示例#1
0
 public ManifestItem(string id, ManifestItemType type, string relativePath, bool doNotCopy)
 {
     this.ID           = id;
     this.Type         = type;
     this.RelativePath = relativePath;
     this.DoNotCopy    = doNotCopy;
 }
示例#2
0
 private bool IsType(ManifestItem item, ManifestItemType targetType)
 {
     return(ManifestUtility.GetDocumentType(item) == targetType);
 }