Closed
Description
I'm trying to download a NuGet package from a feed. Getting the package from the feed works fine, but when I try to download it with the NuGet client, it just hangs.
feed_client = connection.clients_v5_0.get_feed_client()
nuget_client = connection.clients_v5_0.get_nuget_client()
package = feed_client.get_package(feed_id, package_guid)
package_version = package.versions[0].version
nuget_client.download_package(feed_id, package_name, version)
Any ideas what could be happening?