summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/PlatformID.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/PlatformID.cs')
-rw-r--r--src/mscorlib/src/System/PlatformID.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/mscorlib/src/System/PlatformID.cs b/src/mscorlib/src/System/PlatformID.cs
deleted file mode 100644
index dfab2175ab..0000000000
--- a/src/mscorlib/src/System/PlatformID.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-/*============================================================
-**
-**
-**
-** Purpose: Defines IDs for supported platforms
-**
-**
-===========================================================*/
-
-namespace System
-{
- [Serializable]
- internal enum PlatformID
- {
- Win32S = 0,
- Win32Windows = 1,
- Win32NT = 2,
- WinCE = 3,
- Unix = 4,
- Xbox = 5,
- MacOSX = 6
- }
-}