From 53a0a9eaf410cd02f1c2aa970141d5ccad6c72bb Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Wed, 10 Jul 2019 17:58:59 -0400 Subject: [PATCH] Add TypeForwards for FileSystemName & CryptographicOperations (#15652) * Add TypeForwards for: * System.IO.Enumeration.FileSystemName * System.Security.Cryptography.CryptographicOperations Since these were removed in NS 2.1 * Bump API snapshot submodule --- external/api-snapshot | 2 +- mcs/class/System/Assembly/AssemblyInfo.cs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/external/api-snapshot b/external/api-snapshot index 70a48c6c5c3..d87ade142bc 160000 --- a/external/api-snapshot +++ b/external/api-snapshot @@ -1 +1 @@ -Subproject commit 70a48c6c5c340dee88cac8fb049ebc98d15ce6e1 +Subproject commit d87ade142bcf385655475640c45a52c038c53f78 diff --git a/mcs/class/System/Assembly/AssemblyInfo.cs b/mcs/class/System/Assembly/AssemblyInfo.cs index c36b1ba454a..bfe1e6a7b90 100644 --- a/mcs/class/System/Assembly/AssemblyInfo.cs +++ b/mcs/class/System/Assembly/AssemblyInfo.cs @@ -92,3 +92,5 @@ using System.Runtime.InteropServices; [assembly: TypeForwardedTo (typeof (System.Collections.Generic.Stack<>))] [assembly: TypeForwardedTo (typeof (System.Collections.Generic.Queue<>))] +[assembly: TypeForwardedTo (typeof (System.IO.Enumeration.FileSystemName))] +[assembly: TypeForwardedTo (typeof (System.Security.Cryptography.CryptographicOperations))] -- 2.11.4.GIT