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

Fix IsOSVersionAtLeast when build or revision are not provided #108748

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@ public static partial class Environment
{
private static OperatingSystem GetOSVersion()
{
Version version = new Version(Interop.Sys.iOSSupportVersion());
Version version = Version.Parse(Interop.Sys.iOSSupportVersion());

// Check if build and revision are -1 and default them to 0
int major = version.Major;
int minor = version.Minor;
int build = version.Build >= 0 ? version.Build : 0;
int revision = version.Revision >= 0 ? version.Revision : 0;
kotlarmilos marked this conversation as resolved.
Show resolved Hide resolved

version = new Version(major, minor, build, revision);
kotlarmilos marked this conversation as resolved.
Show resolved Hide resolved

return new OperatingSystem(PlatformID.Unix, version);
}
}
Expand Down
Loading