X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.InteropServices%2F_Assembly.cs;h=a30e29ce22d696bd8a3b810212421137de6da3de;hb=01ea58cbd474d4a9230acbba5571738896539d42;hp=531ec34351e522677f005af964089f1d0303dccc;hpb=0443306d611d0830e27327e1f0a3ef3457dfa535;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.InteropServices/_Assembly.cs b/mcs/class/corlib/System.Runtime.InteropServices/_Assembly.cs index 531ec34351e..a30e29ce22d 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/_Assembly.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/_Assembly.cs @@ -26,8 +26,6 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_1_1 - using System.IO; using System.Globalization; using System.Reflection; @@ -36,13 +34,13 @@ using System.Security.Policy; namespace System.Runtime.InteropServices { -#if NET_2_0 [ComVisible (true)] -#endif [CLSCompliant (false)] [InterfaceType (ComInterfaceType.InterfaceIsDual)] [Guid ("17156360-2F1A-384A-BC52-FDE93C215C5B")] +#if !FULL_AOT_RUNTIME [TypeLibImportClass (typeof(Assembly))] +#endif public interface _Assembly { string ToString (); @@ -89,7 +87,9 @@ namespace System.Runtime.InteropServices string Location { get; } +#if !NET_2_1 Evidence Evidence { get; } +#endif object[] GetCustomAttributes (Type attributeType, bool inherit); @@ -129,10 +129,11 @@ namespace System.Runtime.InteropServices AssemblyName[] GetReferencedAssemblies (); +#if !NET_2_1 bool GlobalAssemblyCache { get; } +#endif event ModuleResolveEventHandler ModuleResolve; } } -#endif