Reputation: 3112
I'm trying to add a package to my project using NuGet (in VS2015). When I click the "Install" button I see
Downloading missing packages...
at the top of the screen with a progress bar.
After a moment the message is replaced with -
An error occurred while trying to restore packages: Central Directory corrupt.
with a "Restore" button at the end which does the same process.
Anyone have any idea how to fix this?
Upvotes: 17
Views: 17692
Reputation: 3112
Edit 07/2017
A far easier method of solving this issue is be to just get Visual Studio to re-download the package -
Tools -> Options
.NuGet Package Manager
.Allow NuGet to download missing packages
and Automatically check for missing packages during build in Visual Studio
are both ticked.OK
.Original Answer
Ok, the problem here was that the .nupkg
file for one package (found in project root/packges/package folder) had been corrupted at some point and had a size of zero.
I figured out which package was corrupt after attempting to manually install a random package using the package manager console -
Install-Package *package name*
which told me that there was a problem with a currently installed package -
Install-Package : An error occurred while retrieving package metadata for 'package name'....
From there I was able to fix it by doing the following -
.nupkg
file using the "Download" link on the left hand side (checking the version number).Upvotes: 22
Reputation: 2780
My problem was a corrupted zip file in the following folder: C:\Program Files (x86)\Microsoft SDKs\NuGetPackages
I cleared all these packages (offline repository)
Upvotes: 1
Reputation: 61
1.First of all read the error.
2.Find the Directory listed on error console. 1.File Explorer ==>>
For Example, My Path is. C:\Code\Ex_Nikesh\20\packages In Packages Find Microsoft.SqlServer.Types.xx.xxx.xx.xx(xx indicates version number)
3.Inside the folder find Microsoft.SqlServer.Types.xx.xxx.xx.xx.nu(Nuget Package File [In My case file size is 0 KB]) Delete that File.
4.Now Download the File and Paste inside Microsoft.SqlServer.Types.xx.xxx.xx.xx Folder Click Here for Download Nuget File
Upvotes: 1
Reputation: 3528
Remove all nuget packages under \packages\ ( i had multiple corrupted packages)
Go to your solution in Visual Studio and press "Restore Nuget Packages"
Rebuild your solution
Should be fixed :)
Upvotes: 4