public async Task <BuildSchema> LoadSchema() => BuildSchema.Parse( await RecordBuildSchema(() => File.ReadAllTextAsync(SchemaFile, Globals.HeliumEncoding)) );
public async Task <BuildSchema> LoadSchema() { var text = await File.ReadAllTextAsync(Path.Combine(extractedDir, ArchiveRecorder.BuildSchemaPath)); return(BuildSchema.Parse(text)); }