|
When I go to "Manage Nuget Packages for Solution" I only see the installed pacages for one of my projects in the Installed Packages tab. I see the same list im the Package Manager Console using Get-Package. The project that i see packages for is
the first project listed in Pckages/repositories.config:
<?xml version="1.0" encoding="utf-8"?><repositories> <repository path="..\RequestReduce.Facts\packages.config" /> <repository path="..\RequestReduce\packages.config" /> <repository
path="..\RequestReduce.Facts.Integration\packages.config" /> <repository path="..\RequestReduce.SampleWeb\packages.config" /> <repository path="..\RequestReduce.SqlServer\packages.config" /> <repository
path="..\RequestReduce.SassLessCoffee\packages.config" /></repositories>
All of the packages.config files listed in repositories.config exist where they are supposed to be and each .csprog file has a reference to it. The contents of each packages.config looks ok.
As an experiment, I added a package in the package manager to one of my other projects that I already had. Instead of getting the Nuget Install dialog with the progress bar that moves as the package installs, I immediagely got the green checkbox next to
the package in the package manager. I keep all of these files in source control here: https://github.com/mwrock/RequestReduce after the already installed package magically showed up after adding
it. There was no change to any of these files in my locally uncommited changes so I'm not sure where this is all being tracked.
I have had issues in the past with installed packages disappearing unexplainably. I'd like to better understand this issue or know if its a bug, In the past I have dealt with this by blowing away the packages.config and recreating it by readding the packages
but I have so many packages now that process is becoming laborious
Any Thoughts?
Thanks.
|