My project solution is configured in this way, contains the following projects
MyProjectSolution.sln MyProject.WebPI(Asp.net 5 WebAPI) MyProject.Data(Asp.net 5 class libray) MyProject.Domain(Asp.net 5 class libray)
I followed the steps listed in the articles below https://azure.microsoft.com/en-us/documentation/articles/vs-azure-tools-connected-services-storage/ and https://azure.microsoft.com/en -us / documentation / articles / vs-storage-aspnet5-getting-started-blobs / which modified my project.json to include this dependency "WindowsAzure.Storage": "4.3.2-preview"
but then an error appeared indicating that WindowsAzure.Storage is not supported in DNXCoreVersion = 5.0
Note: 1) I also tried to add the above dependency manually to check if it did not lead to the same or different error - no change.
2) I tried to look at the sdks% Program Files% \ Microsoft SDKs \ Azure.NET SDK \\ ref \ folder, but could not find it. Attached is a screen shot of the DLLs that I found.
Is there a specific version that I can try? or did i miss something important here?
Thanks! 
{ "version": "1.0.0-*", "description": "MyProject.Data Class Library", "authors": [""], "tags": [""], "projectUrl": "", "licenseUrl": "", "frameworks": { "dnx451": { "dependencies": { "Microsoft.Data.Edm": "5.6.3", "Microsoft.Data.OData": "5.6.3", "Microsoft.Data.Services.Client": "5.6.3", "System.Spatial": "5.6.3" } }, "dnxcore50": { "dependencies": { "Microsoft.CSharp": "4.0.1-beta-23516", "System.Collections": "4.0.11-beta-23516", "System.Linq": "4.0.1-beta-23516", "System.Runtime": "4.0.21-beta-23516", "System.Threading": "4.0.11-beta-23516", "System.IO": "4.0.11-beta-23516" } } }, "dependencies": { "MyProject.Domain": "1.0.0-*", "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", "WindowsAzure.Storage": "4.3.2-preview", } }
source share