From 23b693ca3fd28665ae43d52b387ba7f01c5344b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Fri, 19 Feb 2016 19:04:42 +0100 Subject: [PATCH] Delete call to RhEnableShutdownFinalization Shutdown finalization was abandoned for .NET core. See discussion in pull request #889 and dotnet/corefx#5205. --- .../Runtime/CompilerHelpers/StartupCode/StartupCodeHelpers.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/System.Private.CoreLib/src/Internal/Runtime/CompilerHelpers/StartupCode/StartupCodeHelpers.cs b/src/System.Private.CoreLib/src/Internal/Runtime/CompilerHelpers/StartupCode/StartupCodeHelpers.cs index e58200a9a2d..32b641c72b4 100644 --- a/src/System.Private.CoreLib/src/Internal/Runtime/CompilerHelpers/StartupCode/StartupCodeHelpers.cs +++ b/src/System.Private.CoreLib/src/Internal/Runtime/CompilerHelpers/StartupCode/StartupCodeHelpers.cs @@ -21,7 +21,6 @@ internal static void Initialize() { InitializeStringTable(); RunEagerClassConstructors(); - RuntimeImports.RhEnableShutdownFinalization(0xffffffffu); } internal static void Shutdown()