Issue:
Despite having a NuGet.config file in the root of the repository dotnet tool was pulling from NuGet.org. The expected behavior is all NuGet packages from the feed specified in NuGet.config.
Fix:
Pass the configfile argument to dotnet tool update so packages are pulled from source specified in NuGet.config file.
How verified:
Ran PR build with verbose logging enabled to confirm packages are being pulled from proper source specified in NuGet.config.
Issue: Despite having a NuGet.config file in the root of the repository dotnet tool was pulling from NuGet.org. The expected behavior is all NuGet packages from the feed specified in NuGet.config.
Fix: Pass the configfile argument to
dotnet tool update
so packages are pulled from source specified in NuGet.config file.How verified: Ran PR build with verbose logging enabled to confirm packages are being pulled from proper source specified in NuGet.config.