Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting issue while installing Window Azure Storage package

I am getting following issue while installing the 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'.
like image 547
Manish Ray Avatar asked Dec 11 '25 05:12

Manish Ray


1 Answers

Upgrade to NuGet 2.8.3.

I was seeing the same error message with NuGet 2.8.1 and 2.8.2 trying to restore the WindowsAzure.Storage package after our project upgraded to the Azure SDK 2.5, but updating NuGet to 2.8.3 fixed it.

The 2.8.3 release notes are a little vague, unfortunately, but I assume that "reliability bug fixes related to the scenarios of enabling package restore" is related to this problem.

like image 164
Micah R Ledbetter Avatar answered Dec 12 '25 23:12

Micah R Ledbetter