Migrating from monodoc/class/Microsoft.Build.Framework to mcs/class/Microsoft.Build...
[mono.git] / mcs / class / Microsoft.Build.Framework / Microsoft.Build.Framework / CustomBuildEventArgs.cs
index 702fd816e836d3f701d63ef056e07eddff2548cd..1067ac2beba2f6f65af4c7cefc9889e17b2ce46d 100644 (file)
@@ -32,15 +32,15 @@ using System;
 
 namespace Microsoft.Build.Framework {
        [Serializable]
-       public class CustomBuildEventArgs : BuildEventArgs {
+       public abstract class CustomBuildEventArgs : BuildEventArgs {
        
                protected CustomBuildEventArgs ()
                {
                }
-
-               public CustomBuildEventArgs (string message,
-                                            string helpKeyword,
-                                            string senderName)
+               
+               protected CustomBuildEventArgs (string message,
+                                               string helpKeyword,
+                                               string senderName)
                        : base (message, helpKeyword, senderName)
                {
                }