Added eol.
[mono.git] / mcs / class / Microsoft.Build.Framework / Microsoft.Build.Framework / BuildEventArgs.cs
index 7a13b48d6506b76ffcf7d5efcdf4b178da37064f..60be917bf464db00a50598171c1dce8ef7ad370f 100644 (file)
@@ -26,6 +26,8 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
+#if NET_2_0
+
 using System;
 using System.Threading;
 
@@ -38,7 +40,7 @@ namespace Microsoft.Build.Framework
                string  message;
                string  senderName;
                int     threadId;
-               DateTime        timeStamp;
+               DateTime        timestamp;
                
                protected BuildEventArgs ()
                        : this (null, null, null)
@@ -52,7 +54,7 @@ namespace Microsoft.Build.Framework
                        this.helpKeyword = helpKeyword;
                        this.senderName = senderName;
                        this.threadId = Thread.CurrentThread.GetHashCode ();
-                       this.timeStamp = DateTime.Now;
+                       this.timestamp = DateTime.Now;
                }
 
                public string HelpKeyword {
@@ -80,10 +82,12 @@ namespace Microsoft.Build.Framework
                        }
                }
                // Time when event was fired
-               public DateTime TimeStamp {
+               public DateTime Timestamp {
                        get {
-                               return timeStamp;
+                               return timestamp;
                        }
                }
        }
 }
+
+#endif
\ No newline at end of file