Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Pfister <steveisok@users.noreply.github.com>2019-07-11 00:58:59 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-11 00:58:59 +0300
commit53a0a9eaf410cd02f1c2aa970141d5ccad6c72bb (patch)
tree02b5bc3f58d0a560d2b42c39e85f0b1ba5d91eb5 /mcs/class/System
parent4917c086b6f638254cefc6de4fccc700d87db97b (diff)
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
Diffstat (limited to 'mcs/class/System')
-rw-r--r--mcs/class/System/Assembly/AssemblyInfo.cs2
1 files changed, 2 insertions, 0 deletions
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))]