2007-10-24 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 24 Oct 2007 12:44:33 +0000 (12:44 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 24 Oct 2007 12:44:33 +0000 (12:44 -0000)
* Assembly.cs : include ReflectionOnlyLoad() as part of 2.0
  bootstrap build.

svn path=/trunk/mcs/; revision=88064

mcs/class/corlib/System.Reflection/Assembly.cs
mcs/class/corlib/System.Reflection/ChangeLog

index 664ce1166d9f4abda4bc7020665f7dfecb23b99b..44db76da6671a2a6aca213eccd4b27c9ea7e72d0 100644 (file)
@@ -512,7 +512,7 @@ namespace System.Reflection {
                        return AppDomain.CurrentDomain.Load (rawAssembly, rawSymbolStore, securityEvidence);
                }
 
-#if NET_2_0
+#if NET_2_0 || BOOTSTRAP_NET_2_0
                public static Assembly ReflectionOnlyLoad (byte[] rawAssembly)
                {
                        return AppDomain.CurrentDomain.Load (rawAssembly, null, null, true);
index 1f840861f515a97df4e51d50c525aa911905d44b..36f769be7b65fa7b09a8bfb820ee6f756fab1f94 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-24  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Assembly.cs : include ReflectionOnlyLoad() as part of 2.0
+         bootstrap build.
+
 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
 
        * Assembly.cs (GetManifestModule): New virtual method overridden by