Same fix as in HEAD
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Mon, 9 Aug 2004 16:30:19 +0000 (16:30 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Mon, 9 Aug 2004 16:30:19 +0000 (16:30 -0000)
svn path=/branches/mono-1-0/mcs/; revision=32083

mcs/class/System/System.CodeDom/ChangeLog
mcs/class/System/System.CodeDom/CodeEntryPointMethod.cs

index 2c818373f8cbd212e378fde0c9d1ff33310669e1..4db765c3319b6192d9d68cd2dc65bb0322a74c8f 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * CodeEntryPointMethod.cs: patch by Fawad Halim that makes the entry
+       point method public.
+
 2004-02-04  Jackson Harper <jackson@ximian.com>
 
        * CodeTypeMember.cs: Name is String.Empty if not set.
index 4b3b477eb7e1addbf6bb6692ba073291e5bc8235..5a46d2a2a089062f9b96b3f419cc955404af3250 100644 (file)
@@ -38,5 +38,9 @@ namespace System.CodeDom
        public class CodeEntryPointMethod
                : CodeMemberMethod
        {
+               public CodeEntryPointMethod ()
+               {
+                       Attributes = MemberAttributes.Public | MemberAttributes.Static;
+               }
        }
 }