You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for NuGet V2 upstream package sources (#630)
To configure the mirror service to use the NuGet V2 client:
```json
"Mirror": {
"Enabled": true,
"PackageSource": "https://www.nuget.org/api/v2/",
"Legacy": true
},
```
Support embedded package icons (#469)
NuGet supports embedding the package's icon into the package itself. This adds the necessary logic to support embedded icons in BaGet. This was a community contribution by @iodes
[Protocol] Mirror nuget.org's undocumented protocols (#249)
NuGet.org uses RDF to generate its V3 API. This adds properties that aren't part of the official API, however, certain clients depend on these undocumented properties.