Preparation fo Mystery rolling

This commit is contained in:
2026-05-24 02:55:03 -05:00
parent 47bd6110cf
commit bceff701bf
15 changed files with 646 additions and 32 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
namespace ALttPRandomizer.Azure {
using global::Azure.Storage.Blobs;
using global::Azure.Storage.Blobs.Models;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
@@ -43,7 +44,7 @@
public async Task<Dictionary<string, BinaryData>> GetFiles(string seedId) {
var prefix = seedId + "/";
var blobs = this.BlobClient.GetBlobsAsync(prefix: prefix);
var blobs = this.BlobClient.GetBlobsAsync(new GetBlobsOptions() { Prefix = prefix });
var data = new Dictionary<string, BinaryData>();