NuGet / NuGetGallery

NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
https://www.nuget.org/
Apache License 2.0
1.54k stars 643 forks source link

Make DateTime ISO 8601 throughout NuGet.org #9792

Open JonDouglas opened 8 months ago

JonDouglas commented 8 months ago
image

https://github.com/NuGet/NuGetGallery/blob/7f55d930b98e3fcd0d901bb897819d96a9ebedb8/src/NuGetGallery.Services/Extensions/DateTimeExtensions.cs#L21C9-L24C10

->

public static string ToNuGetShortDateString(this DateTime self)
{
    return self.ToString("yyyy-MM-dd");
}

Or similar?