Implements functionality for missing azure storage apis in .net standard.
The last version of the azure storage api did not contains functions that were not async making porting time consuming and difficult.
This library adds those operations back in a donet standard 2.0 compatible library. So calls like this (see below) will compile.
CloudPageBlob blob = (CloudPageBlob)blobItem;
blob.Delete();
you can see a discussion of the issue here
Install the nuget package: Install-Package Mossharbor.AzureWorkArounds.Storage -Version 1.0.1