6 instantiations of InvalidNuGetSourceException
Microsoft.TemplateEngine.Edge (6)
Installers\NuGet\NugetApiPackageManager.cs (6)
105throw new InvalidNuGetSourceException("Failed to load NuGet source", new[] { source.Source }, e); 261throw new InvalidNuGetSourceException("Failed to load NuGet sources", packageSources.Select(source => source.Source)); 349throw new InvalidNuGetSourceException("Failed to load NuGet sources", sources.Select(s => s.Source)); 452throw new InvalidNuGetSourceException($"Failed to load NuGet sources configured for the folder {currentDirectory}", ex); 460throw new InvalidNuGetSourceException("No NuGet sources are defined or enabled"); 490throw new InvalidNuGetSourceException("No NuGet sources are defined or enabled");
4 references to InvalidNuGetSourceException
Microsoft.TemplateEngine.Edge (4)
Installers\NuGet\NugetApiPackageManager.cs (2)
44/// <exception cref="InvalidNuGetSourceException">when sources passed to install request are not valid NuGet sources or failed to read default NuGet configuration.</exception> 190/// <exception cref="InvalidNuGetSourceException">when sources passed to install request are not valid NuGet feeds or failed to read default NuGet configuration.</exception>
Installers\NuGet\NuGetInstaller.cs (2)
148catch (InvalidNuGetSourceException e) 274catch (InvalidNuGetSourceException e)