Blue Falcon

Results 196 comments of Blue Falcon

Any update on this? I've considered using the C# implementation of PartialZip, but nuget apparently doesn't accept byte ranges in http requests. Exposing the .nupkg's content directory record would allow...

Also, if you include the full path in the listed entries, it should allow build/import utilities (like my [Import-Package for PowerShell](https://github.com/pwsh-cs-tools/core/tree/main/Import-Package)) to determine if there are any runtime-id-specific (OS+arch-specific) files...

I'll take a look at that. It's quite possible that PartialZip was just dated.

@loic-sharma > In case it helps anyone, I created https://github.com/loic-sharma/NuGet.Assembly/ which extracts assemblies from NuGet packages into a content-addressable store. In 2019 this could process all of nuget.org in a...

@joelverhagen > @anonhostpi, you can try my side project MiniZip which uses range requests against NuGet's V3 API. Range requests are not a documented part of the V3 protocol (i.e....

@joelverhagen I love it. I transpiled your README example to PowerShell (+Import-Package module): ```powershell # Import-Module Import-Package Import-Package Knapcode.MiniZip # installs and loads Knapcode.MiniZip from PackageManagement $url = "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg" $client...