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

Support MinClientVersion <= 4.1.0.0 #3860

Merged
merged 2 commits into from
May 8, 2017
Merged
Changes from 1 commit
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/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.0.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";
}
}
}
}