Reputation: 31
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'.
Upvotes: 3
Views: 1673
Reputation: 1098
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.
Upvotes: 6