From 39072a7abe4ea971a4471e17fb47fac0e39add7c Mon Sep 17 00:00:00 2001 From: Michal Strehovsky Date: Wed, 13 Feb 2019 04:45:42 -0800 Subject: [PATCH] Annotate PlatformID as a moved type This should have been annotated along with the rest in dotnet/corertdotnet/coreclr#6928 but I missed it. [tfs-changeset: 1733685] Signed-off-by: dotnet-bot Commit migrated from https://github.com/dotnet/coreclr/commit/9d932bb6af40e78c83d98ed280465c7024884d52 --- src/libraries/System.Private.CoreLib/src/System/PlatformID.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libraries/System.Private.CoreLib/src/System/PlatformID.cs b/src/libraries/System.Private.CoreLib/src/System/PlatformID.cs index 1e0a688..2eda3c0 100644 --- a/src/libraries/System.Private.CoreLib/src/System/PlatformID.cs +++ b/src/libraries/System.Private.CoreLib/src/System/PlatformID.cs @@ -6,6 +6,9 @@ using System.ComponentModel; namespace System { +#if PROJECTN + [Internal.Runtime.CompilerServices.RelocatedType("System.Runtime.Extensions")] +#endif public enum PlatformID { [EditorBrowsable(EditorBrowsableState.Never)] Win32S = 0, -- 2.7.4