I\'m looking for a means to detect if my C# app is running on Windows 10.
I had hoped that Environment.OSVersion would do the trick, but this seems to r
Can't you use the Version Helper functions? https://msdn.microsoft.com/en-us/library/windows/desktop/dn424972(v=vs.85).aspx
IsWindows10OrGreater
Indicates if the current OS version matches, or is greater than, the Windows 10 version. For Windows 10, IsWindows10OrGreater returns false unless the application contains a manifest that includes a compatibility section that contains the GUID that designates Windows 10.
and add the GUIDs: https://msdn.microsoft.com/en-ca/library/windows/desktop/dn481241(v=vs.85).aspx