1
0

Added missing Windows 10 release IDs

This commit is contained in:
Benjamin Höglinger-Stelzer 2020-12-02 19:58:52 +01:00
parent 164a29c61d
commit 2f1a25e27e

View File

@ -20,6 +20,9 @@ namespace DerpingDrivers.Util
/// </summary> /// </summary>
public static class OsVersionInfo public static class OsVersionInfo
{ {
/// <summary>
/// https://en.wikipedia.org/wiki/Windows_10_version_history#Channels
/// </summary>
private static readonly List<string> Windows10ReleaseIds = new List<string> private static readonly List<string> Windows10ReleaseIds = new List<string>
{ {
"1507", "1507",
@ -28,7 +31,10 @@ namespace DerpingDrivers.Util
"1709", "1709",
"1803", "1803",
"1809", "1809",
"1903" "1903",
"1909",
"2004",
"20H2"
}; };
#region SERVICE PACK #region SERVICE PACK