Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

There is no way to force a true reinstall of a package from the actual source #7678

Closed
bitbonk opened this issue Jan 8, 2019 · 3 comments
Closed

Comments

@bitbonk
Copy link

bitbonk commented Jan 8, 2019

During development we would like to make changes to code in a nuget package, build it locally and then test and debug these changes in a different solution that consumes this package. This "inner loop" happens many times during the day.

Unfortunately because of the way NuGet currently works, there seems to be no decent workflow to support a short inner loop like this unless I increment the package version manually in the csproj for each little change I want to try out.

Forcing a restore of the package like this

dotnet restore --source c:\temp\nuget --no-cache --force

will not reinstall the package from c:\temp\nuget. The option --no-cache does not affect global-packages. The above command will just reinstall the outdated package that is in the %userprofile%\.nuget\packages cache. (I just learned today that you do no consider global-packages to be a cache, so that explains that).

Also the above command would potentially restore all packages again. This could potentially be time consuming and makes the inner loop longer. I have no way to tell NuGet to restore just that one package I changed.

Also there is no dotnet cli command to clear the global-packages for just a single package. All I can do is to clear the complete "cache" using

dotnet nuget locals --clear global-packages

So the current workflow that we currently use is either to delete the package from %userprofile%\.nuget\packages manually before we do a restore or to manually override the changed dll directly in the folder where it was referenced by the consuming project, e.g. %userprofile%\.nuget\packages\PackageId\1.0.0\lib\netstandard2.0\Foo.dll.

So it would be very helpful if there would be something like

dotnet nuget locals --clear <PackageId> global-packages

to delete a particular package from the "cache" or

dotnet restore --source c:\temp\nuget --package <PackageId> --really-force

to truly force a reinstall of a specific package from the actual source.

NuGet product used: dotnet.exe
NuGet version: 4.9.2.0
dotnet.exe --version: 2.2.102
OS version: Win10 v1809

@bitbonk
Copy link
Author

bitbonk commented Jan 8, 2019

#5619

@zivkan
Copy link
Member

zivkan commented Jan 11, 2019

closing as a dupe of #6579.

As stated in that issue, a workaround is to use nuget.config to change your globalPackagesFolder to somewhere that gets cleared between CI tests, or as needed.

@zivkan zivkan closed this as completed Jan 11, 2019
@bitbonk
Copy link
Author

bitbonk commented Jan 14, 2019

I have been trying this approach and failed: #7692

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants