Preparation fo Mystery rolling
This commit is contained in:
@@ -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>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user