From c7a4224de096bdd45060ae7d2dba364566fed5b4 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Fri, 10 Jul 2020 07:13:57 -0400 Subject: [PATCH] Put back missing EditorBrowsableState.Nevers on PlatformID --- src/libraries/System.Runtime/ref/System.Runtime.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libraries/System.Runtime/ref/System.Runtime.cs b/src/libraries/System.Runtime/ref/System.Runtime.cs index 80a78a047d14e8..388eeea1f48d3a 100644 --- a/src/libraries/System.Runtime/ref/System.Runtime.cs +++ b/src/libraries/System.Runtime/ref/System.Runtime.cs @@ -3065,12 +3065,17 @@ public ParamArrayAttribute() { } } 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