-1

I have a team services repository that I have successfully cloned using git-tfs, on past migrations I have had to run the nuget command:

update-package -reinstall

to re-add all the references and get the solution working, my current migration is a much larger project than I have previously worked with and for whatever reason after running the command building still fails with missing references, some of which appear to be telerik among other things.

there are some dll's in a "shared binaries" folder in the solution some of which match the references to telerik and some other stuff, is there a way for visual studio to automatically find and add these references? doing it manually would take hours as the project is enormous.

Ashley McVeigh
  • 35
  • 1
  • 2
  • 8

1 Answers1

1

You can try to publish all the packages to a local network share or to a package manager such as NuGet. And configure it as a Repository in Visual Studio.

Useful links:

Then enable automatic Package Restore in Visual Studio by going to Package Manager General settings in Visual Studios options:

enter image description here

Useful link: https://docs.nuget.org/consume/package-restore

Community
  • 1
  • 1
Cece Dong - MSFT
  • 29,631
  • 1
  • 24
  • 39