Can't Install when a private nuget feed is configured #1569
-
When I try to install, I get this: It also doesn't tell me what the current version is so I can't specify the version |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @cfindlayvcs It looks like you are not authenticated with your private nuget feed on the command line: You could try following these instructions to authenticate to your feed in the command line: https://docs.microsoft.com/en-us/azure/devops/artifacts/nuget/dotnet-exe?view=azure-devops So run Or you can specify 'ignore failed sources':
Or you can temporarily disable the unauthenticated package source: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-disable-source
|
Beta Was this translation helpful? Give feedback.
Hi @cfindlayvcs
It looks like you are not authenticated with your private nuget feed on the command line:
You could try following these instructions to authenticate to your feed in the command line: https://docs.microsoft.com/en-us/azure/devops/artifacts/nuget/dotnet-exe?view=azure-devops
So run
dotnet tool install -g dotnet-stryker --interactive
Or you can specify 'ignore failed sources':
dotnet tool install -g dotnet-stryker --ignore-failed-sources
Or you can temporarily disable the unauthenticated package source: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-disable-source
dotnet nuget disable source <source_name>