private FileSystemRepositorySettings GetSettings()
        {
            var ret = new FileSystemRepositorySettings(this.Location)
            {
                Compress = this.Compress
            };

            if (!String.IsNullOrWhiteSpace(this.ChunkSize))
            {
                ret.ChunkSize = this.ChunkSize;
            }

            return(ret);
        }
Esempio n. 2
0
 public FileSystemRepository(FileSystemRepositorySettings settings) => Settings = settings;