package.config update does not update the references

11,450

Solution 1

Just editing the packages.config file will not cause Visual Studio to make any changes to your project. Also NuGet restore does not modify your project. NuGet restore just downloads the NuGet packages and makes them available for your project.

Instead of editing the packages.config file I would just use the NuGet Package Manager in Visual Studio, or the Package Management Console, to update the NuGet package in the projects required.

Other alternatives include updating the project files (.csproj) to use the correct updated assembly references. Or you can run an Update-Package -reinstall to force the NuGet packages to be uninstalled and installed again in the projects. That will fix the assembly references.

Solution 2

If your solution can be opened by Visual Studio 2017, I suggest to use the latest PackageReference to manage nuget. Packages.config has several drawbacks and PackageReference solve these problems.

Here's the solution to migrate to PackageReference: https://github.com/NuGet/Home/wiki/Packages.config-to-PackageReference-Migrator

Also, you can this use this vs extension: https://marketplace.visualstudio.com/items?itemName=TaylorSouthwickMSFT.NuGetPackagetoProjectjsonConverter

Share:
11,450
Lost
Author by

Lost

Updated on June 17, 2022

Comments

  • Lost
    Lost almost 2 years

    I have multiple projects referencing the same NuGet Package. When I got latest code, I realized that one of the projects had an updated package.config and also updated reference to the Dll that is provided by that package.

    Now, I also updated package.config on other prjects hoping the as soon as I do an upgrade on that NuGet engine will see that and fetch me new DLLs. Well, it did not happen. After that I tried following things and none of them worked:

    1. Deleting the old version of DLL and then doing Restore package
    2. Deleting the packages folder, restarting my VS 2015 and restoring the package

    Also, funny thing is that when I go to Manage Nuget Packages and look at the package for which I need new DLL, it shows that it is already at new version and I do not need to upgrade it.

    Is there any ways I can get NuGet engine to upgrade these packages?