private FileSystemRepositorySettings GetSettings() { var ret = new FileSystemRepositorySettings(this.Location) { Compress = this.Compress }; if (!String.IsNullOrWhiteSpace(this.ChunkSize)) { ret.ChunkSize = this.ChunkSize; } return(ret); }
public FileSystemRepository(FileSystemRepositorySettings settings) => Settings = settings;