I work on an aspnetcore 2.0 project.
I want to use Blob AzureStorage, and I need to list the files in a container.
I added the nuget WindowsAzure.Storage 8.4.
using this line of code:
var results = container.ListBlobs();
I see an error saying CloudBlobContainer does not contain a definition for ListBlobs.
Anyone got this error before?