|
get { return Platform == PlatformID.Win32NT && Version.Major == 11 && Product == ProductType.WorkStation; } |
This check was added recently but it is not correct, Windows 11 major version is still 10, need to also check the build number
see https://www.codeproject.com/Articles/5336372/Windows-11-Version-Detection
nunit/src/NUnitFramework/framework/Internal/OSPlatform.cs
Line 596 in 2c9490b
This check was added recently but it is not correct, Windows 11 major version is still 10, need to also check the build number
see https://www.codeproject.com/Articles/5336372/Windows-11-Version-Detection