Author: wade
Date: 2007-06-18 12:38:51 -0400 (Mon, 18 Jun 2007)
New Revision: 80020

Modified:
   trunk/monodoc/tools/ChangeLog
   trunk/monodoc/tools/monodocer.cs
Log:
* monodocer.cs: Move assembly information up top because having it at the bottom
fails to compile with mcs from trunk.



Modified: trunk/monodoc/tools/ChangeLog
===================================================================
--- trunk/monodoc/tools/ChangeLog       2007-06-18 16:38:35 UTC (rev 80019)
+++ trunk/monodoc/tools/ChangeLog       2007-06-18 16:38:51 UTC (rev 80020)
@@ -1,3 +1,8 @@
+2007-06-18  Wade Berrier  <[EMAIL PROTECTED]>
+
+       * monodocer.cs: Move assembly information up top because having it at 
the bottom
+       fails to compile with mcs from trunk.
+
 2007-06-14  Jonathan Pryor  <[EMAIL PROTECTED]>
 
        * monodocer.cs: Use XPathDocument instead of XmlDocument to process the 
ECMA

Modified: trunk/monodoc/tools/monodocer.cs
===================================================================
--- trunk/monodoc/tools/monodocer.cs    2007-06-18 16:38:35 UTC (rev 80019)
+++ trunk/monodoc/tools/monodocer.cs    2007-06-18 16:38:51 UTC (rev 80020)
@@ -25,6 +25,12 @@
 using StringList           = System.Collections.Generic.List<string>;
 #endif
 
+[assembly: AssemblyTitle("Monodocer - The Mono Documentation Tool")]
+[assembly: AssemblyCopyright("Copyright (c) 2004 Joshua Tauberer <[EMAIL 
PROTECTED]>\nreleased under the GPL.")]
+[assembly: AssemblyDescription("A tool for creating and updating Mono XML 
documentation files for assemblies.")]
+
+[assembly: Mono.UsageComplement("")]
+
 public class Stub {
        
        static string srcPath;
@@ -3035,10 +3041,3 @@
                get {return '+';}
        }
 }
-
-[assembly: AssemblyTitle("Monodocer - The Mono Documentation Tool")]
-[assembly: AssemblyCopyright("Copyright (c) 2004 Joshua Tauberer <[EMAIL 
PROTECTED]>\nreleased under the GPL.")]
-[assembly: AssemblyDescription("A tool for creating and updating Mono XML 
documentation files for assemblies.")]
-
-[assembly: Mono.UsageComplement("")]
-

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to