-1

I have start working on team project but when i map project to my work space it gives me multiple errors. First the tell me missing references. But this project is working fine on other system of group member.

enter image description here

Ali Imran
  • 646
  • 1
  • 9
  • 26

1 Answers1

0

Try below items to fix the issue:

  • Run below command in the Package Manager Console to reinstall the packages: (Reference this thread :Nuget Packages are there but missing References)

    Update-Package -reinstall

  • Navigate to Tools -> Options -> Nuget Package Manager

    1. First make sure that "Allow NuGet to download missing packages" and "Atuomatically check for missing packages during build in Visual Studio" are checked.
    2. Then make sure that the "package.config" file contains the all the references you need for your project.
    3. To force Nuget to download all the libraries again, delete the "packages" folder in the root path of your solution.
    4. Rebuild your solution.
    5. Now Nuget should download all the packages again.

enter image description here

Andy Li-MSFT
  • 28,712
  • 2
  • 33
  • 55