WindowsAzure.Storage supports .NET Standard, but there are no dependencies. Microsoft.Data.OData and System.Spatial do not yet support .NET Standard.
The source suggests adding the following imports property to your frameworks section in the project.json file:
"imports": [ "dnxcore50", "portable-net451+win8" ]
This temporarily imports the PCL profile in which these packages must have existing support.
In new csproj-based projects, the PackageTargetFallback property does the same:
<PropertyGroup> <PackageTargetFallback>dnxcore50;portable-net451+win8</PackageTargetFallback> </PropertyGroup>
source share