Nathan Childers
Nathan Childers

Reputation: 21

WindowsAzure.Storage nuget package install problems

When I attempt to install WindowsAzure.Storage via nuget (using the command found here: https://www.nuget.org/packages/WindowsAzure.Storage/)

Install-Package WindowsAzure.Storage -Version 8.4.0

I get the following error.

Install-Package : Unable to find package PlTagHelpers. No packages exist with this id in source(s): C:\Program Files\dotnet\sdk\NuGetFallbackFolder, Microsoft Visual Studio Offline Packages, nuget.org At line:1 char:1 + Install-Package WindowsAzure.Storage -Version 8.4.0 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCom mand

Install-Package : Unable to find package PlStorage. No packages exist with this id in source(s): C:\Program Files\dotnet\sdk\NuGetFallbackFolder, Microsoft Visual Studio Offline Packages, nuget.org At line:1 char:1 + Install-Package WindowsAzure.Storage -Version 8.4.0 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCom mand

Install-Package : Unable to find package PlBlobLibrary. No packages exist with this id in source(s): C:\Program Files\dotnet\sdk\NuGetFallbackFolder, Microsoft Visual Studio Offline Packages, nuget.org At line:1 char:1 + Install-Package WindowsAzure.Storage -Version 8.4.0 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCom mand

Install-Package : Package restore failed. Rolling back package changes for 'Heartland'. At line:1 char:1 + Install-Package WindowsAzure.Storage -Version 8.4.0 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCom mand

Upvotes: 0

Views: 1629

Answers (1)

Tom Sun
Tom Sun

Reputation: 24569

Unable to find package PlTagHelpers. No packages exist with this id in source(s): C:\Program Files\dotnet\sdk\NuGetFallbackFolder, Microsoft Visual Studio Offline

According to your exception, I assume that when you try to install WindowsAzure.Storage that you choose the package source Microsoft Visual Studio Offline, please have a try to select package source nuget.org or All then it should work.

enter image description here

enter image description here

We also need to note the SDK dependencies, more details please refer to WindowsAzure.Storage

Upvotes: 0

Related Questions