Skip to content

Commit

Permalink
Support MinClientVersion <= 4.1.0.0 (#3860)
Browse files Browse the repository at this point in the history
* Support MinClientVersion <= 4.0.0.0

Fixes NuGet/Home#5156

* Update Constants.cs
  • Loading branch information
maartenba authored and skofman1 committed May 8, 2017
1 parent ba13855 commit 36d594f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NuGetGallery/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static class Constants
public const double AllowedLoginAttempts = 10;

public const int MaxEmailSubjectLength = 255;
internal static readonly NuGetVersion MaxSupportedMinClientVersion = new NuGetVersion("3.4.0.0");
internal static readonly NuGetVersion MaxSupportedMinClientVersion = new NuGetVersion("4.1.0.0");
public const string PackageContentType = "binary/octet-stream";
public const string OctetStreamContentType = "application/octet-stream";
public const string NuGetPackageFileExtension = ".nupkg";
Expand Down Expand Up @@ -79,4 +79,4 @@ public static class StatisticsDimensions
public const string Operation = "Operation";
}
}
}
}

0 comments on commit 36d594f

Please sign in to comment.