private static string GetOsName()

in JetBrains.Etw.HostService.Updater/src/Util/UpdateChecker.cs [140:146]


    private static string GetOsName()
    {
      if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
        throw new PlatformNotSupportedException();
      var osVersion = Environment.OSVersion.Version;
      return $"Windows {osVersion.Major}.{osVersion.Minor}.{osVersion.Build}";
    }