Skip to content

Commit 8fc38c6

Browse files
It's now october...
1 parent 15f2439 commit 8fc38c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

OSVersionHelper/Windows10Release.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public enum Windows10Release
6666
/// <summary>
6767
/// 10.0.19042.0 (20H02)
6868
/// </summary>
69-
September2020 = 2009
69+
October2020 = 2010
7070

7171
}
7272
}

OSVersionHelper/WindowsVersionHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static WindowsVersionHelper()
3131
{
3232
if (IsApiContractPresent(11))
3333
{
34-
Windows10Release = Windows10Release.September2020;
34+
Windows10Release = Windows10Release.October2020;
3535
} else if (IsApiContractPresent(10))
3636
{
3737
Windows10Release = Windows10Release.May2020;
@@ -87,9 +87,9 @@ static WindowsVersionHelper()
8787

8888

8989
/// <summary>
90-
/// Gets a value indicating whether the current OS is Windows 10 September 2020 Update (20H02) or greater
90+
/// Gets a value indicating whether the current OS is Windows 10 October 2020 Update (20H02) or greater
9191
/// </summary>
92-
public static bool IsWindows10September2020OrGreater => IsWindows10 && Windows10Release >= Windows10Release.September2020;
92+
public static bool IsWindows10October2020OrGreater => IsWindows10 && Windows10Release >= Windows10Release.October2020;
9393

9494
/// <summary>
9595
/// Gets a value indicating whether the current OS is Windows 10 May 2020 Update (20H01) or greater

0 commit comments

Comments
 (0)