0

Whenever I try to run my project I keep getting this NU1202 error, for one of the custom packages provided by my company. I've tried deleting the folder and recloning from remote, to no avail.

The odd thing is that it works just fine for other people in my team.

Gene Parcellano
  • 5,799
  • 5
  • 36
  • 43

1 Answers1

1

This answer fixed my problem: https://stackoverflow.com/a/34935038/1794871

It was due to VS2017 using packages which were cached locally in my machine. They had to be removed and the latest version downloaded.

Gene Parcellano
  • 5,799
  • 5
  • 36
  • 43
  • Since you're in a .net core proejct which use packageReference format, the installed packages are stored in the cache not in project directory, so you need to clean the cache to solve this issue. You can also use [the option in vs](https://stackoverflow.com/a/42665980/10910450). – LoLance Aug 28 '19 at 02:24