Getting Problem Installing Window Azure Storage Package

I am having the following problem while installing Azure storage package via Nuget

Attempting to resolve dependency 'Microsoft.Data.OData (≥ 5.6.2)'.
Attempting to resolve dependency 'System.Spatial (= 5.6.3)'.
Attempting to resolve dependency 'Microsoft.Data.Edm (= 5.6.3)'.
'WindowsAzure.Storage' already has a dependency defined for
'Microsoft.Data.OData'.

      

+3


source to share


1 answer


Migrating to NuGet 2.8.3.

I saw the same error message with NuGet 2.8.1 and 2.8.2 trying to restore the package WindowsAzure.Storage

after upgrading our project to Azure SDK 2.5, but upgrading NuGet to 2.8.3 fixed it.



The 2.8.3 release notes are a bit vague, unfortunately, but my guess is that the reliability bug fixes associated with the enable package restore scripts "are related to this issue.

+6


source







All Articles