Idra
Idra

Reputation: 5797

Which nuget package holds the Microsoft.WindowsAzure.StorageClient.dll in Nuget

I just got a new computer at work and started to migrate my projects to VS2013. Now the problem is that with Azure SDK 2.4 the DLL Microsoft.WindowsAzure.StorageClient.dll is not included in it anymore.

I found this this post on the matter, were it was told that they were kept out of the 2.4 in order to keep it lighter and you need to add them in using NuGet.

OK, that's fair enough, but I've tried for hours to find the correct package with no luck. Anyone knows with package holds that DLL?

Upvotes: 0

Views: 5581

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136226

You're trying to add Microsoft.WindowsAzure.StorageClient.dll which is really-really old version of Storage Client library (thus not recommended). But if you're trying to get this DLL, try this link: http://www.nuget.org/packages/WindowsAzure.Storage/1.7.0.

Upvotes: 3

Related Questions