Fix netfx build break
authorJan Kotas <jkotas@microsoft.com>
Fri, 1 Mar 2019 21:59:19 +0000 (13:59 -0800)
committerJan Kotas <jkotas@microsoft.com>
Fri, 1 Mar 2019 23:39:19 +0000 (15:39 -0800)
Commit migrated from https://github.com/dotnet/corefx/commit/524afe84f963b2a87230b19838e72174d4fa90f9

src/libraries/Microsoft.Diagnostics.Tracing.EventSource.Redist/src/RuntimeSpecific.cs

index ceb0f6b..cc14f9b 100644 (file)
@@ -243,19 +243,3 @@ namespace System.Diagnostics.Tracing
         }
     }
 }
-
-#if ES_BUILD_STANDALONE
-namespace Internal.Runtime.Augments
-{
-    internal static class RuntimeThread
-    {
-        internal static ulong CurrentOSThreadId
-        {
-            get { return GetCurrentThreadId(); }
-        }
-
-        [DllImport("kernel32.dll")]
-        private static extern uint GetCurrentThreadId();
-    }
-}
-#endif