From 5c7558d4d7b4a4948a8139c948cdc7bed073a88d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 23 Jun 2021 19:07:38 +0200 Subject: [PATCH] [tools] Revert workaround for dotnet/runtime#45535. The dotnet/runtime issue in question has been fixed. Ref: https://github.com/dotnet/runtime/issues/45535 Ref: https://github.com/xamarin/xamarin-macios/pull/10182/commits/39948aa2c90e1d0edc9f21dc3528878740b4385e --- tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs b/tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs index 105afae92bd6..9e6213bba24a 100644 --- a/tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs +++ b/tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs @@ -132,13 +132,6 @@ void ProcessMethod (MethodDefinition method) case "libSystem.Net.Security.Native": case "System.Net.Security.Native": -#if NET - // tvOS does not ship with System.Net.Security.Native due to https://github.com/dotnet/runtime/issues/45535 - if (DerivedLinkContext.App.Platform == ApplePlatform.TVOS) { - Driver.Log (4, "Did not add native reference to {0} in {1} referenced by {2} in {3}.", pinfo.EntryPoint, pinfo.Module.Name, method.FullName, method.Module.Name); - break; - } -#endif addPInvokeSymbol = true; break;