Este é o erro que estou enfrentando ao instalar qualquer tipo de pacote do Dotner CLI. Existe alguma maneira de resolver isso? Todas as soluções são apreciadas!!
dotnet tool install --global dotnet-ef
Unhandled exception: Microsoft.DotNet.Cli.NuGetPackageDownloader.NuGetPackageInstallerException: Package Source Mapping is enabled, but no source found under the specified package ID: dotnet-ef. See the documentation for Package Source Mapping at https://aka.ms/nuget-package-source-mapping for more details.
at Microsoft.DotNet.Cli.NuGetPackageDownloader.NuGetPackageDownloader.LoadNuGetSources(PackageId packageId, PackageSourceLocation packageSourceLocation, PackageSourceMapping packageSourceMapping)
at Microsoft.DotNet.Cli.NuGetPackageDownloader.NuGetPackageDownloader.GetBestPackageVersionAsync(PackageId packageId, VersionRange versionRange, PackageSourceLocation packageSourceLocation)
at Microsoft.DotNet.Cli.ToolPackage.ToolPackageDownloader.<>c__DisplayClass8_0.<InstallPackage>b__0()
at Microsoft.DotNet.Cli.TransactionalAction.Run[T](Func`1 action, Action commit, Action rollback)
at Microsoft.DotNet.Tools.Tool.Install.ToolInstallGlobalOrToolPathCommand.Execute()
at System.CommandLine.Invocation.InvocationPipeline.Invoke(ParseResult parseResult)
at Microsoft.DotNet.Cli.Program.ProcessArgs(String[] args, TimeSpan startupTime, ITelemetry telemetryClient)
Tentei :
dotnet nuget locals all --clear
dotnet nuget add source https://api.nuget.org/v3/index.json --name nuget.org
Mas nada disso parece funcionar.
Primeiramente, verifique
%appdata%\NuGet\NuGet.Config
(por exemploC:\Users\xxx\AppData\Roaming\NuGet\NuGet.Config
) se ele contém a fonte do pacote correta:Ou execute o comando para verificar as entradas atuais:
Execute o comando abaixo para limpar o cache e reinicie o projeto
Se ainda não estiver funcionando, uma solução alternativa é usar o
--add-source
parâmetro diretamente durante a instalação para especificar nuget.org como a fonte:Você pode tentar isto: