Support for NuGet Proxy Repositories on Sonatype Nexus Repository is not trivial due to case sensitivity challenges.
PURLs are CASE SENSITIVE, alas Windows (eco-systems) are CASE INSENSITIVE. Thus Sonatype Nexus Repository catalogues components canonicalising names to lowercase.
Support for NuGet Proxy Repositories on Sonatype Nexus Repository is not trivial due to case sensitivity challenges.
PURLs are CASE SENSITIVE, alas Windows (eco-systems) are CASE INSENSITIVE. Thus Sonatype Nexus Repository catalogues components canonicalising names to lowercase.
For example: https://www.nuget.org/packages/Azure.Core/1.33.0
pkg:nuget/Azure.Core@1.33.
azure.core
, which results in a PURL ofpkg:nuget/azure.core@1.33
This means we cannot accurately derive the PURL for a NuGet package when browsing Sonatype Nexus Repository Manager.
ucwords
cannot be employed to resolve this due to examples such as https://www.nuget.org/packages/Microsoft.CSharp/4.6.0FYI @maurycupitt