To add to the answer, adding nuget.config
to the project solves it for the project. Adding to the root is fine. The configuration may look like this:
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="MyGet" value="https://www.myget.org/F/aspnet-contrib/api/v3/index.json" /> </packageSources> </configuration>
source share