We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As Newtonsoft.Json's count is reaching int.MaxValue, this issue was raised: NuGet/NuGetGallery#8476
int.MaxValue
At first glance, we're using long already for the count:
long
nuget-trends/src/NuGetTrends.Data/DailyDownload.cs
Line 9 in dac67d1
We need to make sure things will work fine once values overflow a signed 32bit integer max value.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As Newtonsoft.Json's count is reaching
int.MaxValue
, this issue was raised:NuGet/NuGetGallery#8476
At first glance, we're using
long
already for the count:nuget-trends/src/NuGetTrends.Data/DailyDownload.cs
Line 9 in dac67d1
We need to make sure things will work fine once values overflow a signed 32bit integer max value.
The text was updated successfully, but these errors were encountered: