diff --git a/src/DotNetSearch/Extensions/IntegerFormatExtensions.cs b/src/DotNetSearch/Extensions/IntegerFormatExtensions.cs index 9fc34a7..f26efe3 100644 --- a/src/DotNetSearch/Extensions/IntegerFormatExtensions.cs +++ b/src/DotNetSearch/Extensions/IntegerFormatExtensions.cs @@ -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) { diff --git a/src/DotNetSearch/Package.cs b/src/DotNetSearch/Package.cs index bfd2796..f0dc3e9 100644 --- a/src/DotNetSearch/Package.cs +++ b/src/DotNetSearch/Package.cs @@ -22,7 +22,7 @@ public class Package public string ProjectUrl { get; set; } public IEnumerable Tags { get; set; } public IEnumerable Authors { get; set; } - public int TotalDownloads { get; set; } + public long TotalDownloads { get; set; } public bool Verified { get; set; } public IEnumerable Versions { get; set; } } diff --git a/src/DotNetSearch/nuget.config b/src/DotNetSearch/nuget.config deleted file mode 100644 index 9ec51a0..0000000 --- a/src/DotNetSearch/nuget.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file