Reputation: 4902
We have a team of devs. All have NuGet installed. We are all using TFS. One team member adds a NuGet package and checks in. The other team members all get the associated assemblies and NuGet packages.config fine. However, when they go to "Manage NuGet Packages" the "Installed Packages" does not show the package added by other team members. It shows fine for the person that added the package initially.
Is this expected behavior? Are we doing something wrong?
Thanks
Upvotes: 5
Views: 5688
Reputation: 7131
One issue i have found is that the packages are not considered part of the solution and get saved at the solution level (this is in a packages folder). You may need to do a check-in on the solution folder (in source control explorer) to check in the packages that nuget downloads so that others get both the references and the packages.
Upvotes: 3