Beispiel #1
0
 public InlinePackageFile(IPackage package, string path)
 {
     _package = package;
     _entry   = package.GetEntry(path);
     FilePath = path;
     _files   = new HashSet <string>(_package.GetFiles(FilePath));
     _folders = new HashSet <string>(_package.GetDirectories(FilePath));
 }