microsoft / wdkmetadata

Tooling to generate metadata for Win32 APIs in the Windows Driver Kit (WDK).
Other
96 stars 10 forks source link

Specify NuGet configfile for dotnet tool #79

Closed philnach closed 3 weeks ago

philnach commented 3 weeks ago

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.

image