Put back missing EditorBrowsableState.Nevers on PlatformID (#39065)
authorStephen Toub <stoub@microsoft.com>
Fri, 10 Jul 2020 13:37:42 +0000 (09:37 -0400)
committerGitHub <noreply@github.com>
Fri, 10 Jul 2020 13:37:42 +0000 (06:37 -0700)
src/libraries/System.Runtime/ref/System.Runtime.cs

index 80a78a0..388eeea 100644 (file)
@@ -3065,12 +3065,17 @@ namespace System
     }
     public enum PlatformID
     {
+        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
         Win32S = 0,
+        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
         Win32Windows = 1,
         Win32NT = 2,
+        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
         WinCE = 3,
         Unix = 4,
+        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
         Xbox = 5,
+        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
         MacOSX = 6,
     }
     public partial class PlatformNotSupportedException : System.NotSupportedException