I've been reading the docs and I have an issue with the CLI that is:
I'm trying to install a global tool using dotnet tool install --g dotnet-outdated and within my local nuget, I have a few nuget feed. Instead of trying to download from the nuget.org which is the default source, is trying to download from one of the private nuget feed.
This private nuget feed only works within the company's network infrastructure and trying to download a tool that is completely unrelated to my workplace, it gets stuck on trying to download on the private feed instead of going to other sources.
So the question is: Is there any way to specify which source to download it?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
Thanks for your question @minuz. @KathleenDollard @livarcocc can you help with this question about dotnet tool install?
Adding @wli3
you could try one of
--ignore-failed-sources, so even your private feed fails, it will continue to try other feed%appdata%\NuGet\nuget.config on windows
~/.nuget/NuGet/NuGet.Config on mac
Thanks @wli3!! This is what I was looking!
Most helpful comment
you could try one of
--ignore-failed-sources, so even your private feed fails, it will continue to try other feed%appdata%\NuGet\nuget.config on windows
~/.nuget/NuGet/NuGet.Config on mac