PlatformID.cs 768 B

12345678910111213141516171819202122
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.ComponentModel;
  5. namespace System
  6. {
  7. #if PROJECTN
  8. [Internal.Runtime.CompilerServices.RelocatedType("System.Runtime.Extensions")]
  9. #endif
  10. public enum PlatformID
  11. {
  12. [EditorBrowsable(EditorBrowsableState.Never)] Win32S = 0,
  13. [EditorBrowsable(EditorBrowsableState.Never)] Win32Windows = 1,
  14. Win32NT = 2,
  15. [EditorBrowsable(EditorBrowsableState.Never)] WinCE = 3,
  16. Unix = 4,
  17. [EditorBrowsable(EditorBrowsableState.Never)] Xbox = 5,
  18. [EditorBrowsable(EditorBrowsableState.Never)] MacOSX = 6
  19. }
  20. }