Beispiel #1
0
        public CachedFileData(ILocalBundleData d, IAccessPoint dir)
        {
            BundleInfo = d;
            var path = dir.ToLocation(BundleInfo.Path);

            FileInfo = new FileInfo(path.FullPath);
        }
Beispiel #2
0
 public LocalBundleData(ILocalBundleData d) : this
     (
         key : d.Identifier,
         path : d.Path,
         hash : d.Version,
         crc : d.Crc
     )
 {
 }