I am using VS 2010 (package manager console) to download NuGet packages (2.5.40416.9020/Latest). It uses the URL https://nuget.org/api/v2/ . This gives me an error as shown below.
Install-Package : An error occurred while loading packages from'https://nuget.org/api/v2/': The remote name could not be resolved: 'nuget.org' At line:1 char:16 + Install-Package <<<< Rx-Main + CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
But when I access the same URL through a browser, I can browse the site. I am on a corporate network, so a firewall can block the port (except for 80 and 443).
So, which port does NuGet use when downloading packages through the Package Manager Console (VS 2010)?
source share