Skip to content
New issue

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

Upgrade to .net 8 and fix total downloads bug #18

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DotNetSearch/Extensions/IntegerFormatExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace DotNetSearch.Extensions
{
public static class IntegerFormatExtensions
public static class NumberFormatExtensions
{
public static string ToAbbrString(this int value)
public static string ToAbbrString(this long value)
{
switch(value)
{
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetSearch/Package.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Package
public string ProjectUrl { get; set; }
public IEnumerable<string> Tags { get; set; }
public IEnumerable<string> Authors { get; set; }
public int TotalDownloads { get; set; }
public long TotalDownloads { get; set; }
public bool Verified { get; set; }
public IEnumerable<PackageVersion> Versions { get; set; }
}
Expand Down
8 changes: 0 additions & 8 deletions src/DotNetSearch/nuget.config

This file was deleted.

Loading