Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Put back missing EditorBrowsableState.Nevers on PlatformID
  • Loading branch information
stephentoub authored Jul 10, 2020
commit c7a4224de096bdd45060ae7d2dba364566fed5b4
5 changes: 5 additions & 0 deletions src/libraries/System.Runtime/ref/System.Runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down