Whether we’re making our code available to others or want to simply implement solution specific changes to our NuGet repository locations, we can create a NuGet.config file which is stored in the same location as our solution. Here’s a simple example of a NuGet.config which adds a local NuGet location
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="Local" value="c:\Development\LocalNuGet" /> </packageSources> </configuration>
References