Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-01-21 19:53:15 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-01-21 19:59:27 +0300
commit2a978a42f13e2539e7bd3244beb87e77e1086752 (patch)
treed43e105b4db660d30eb928eac47689db47e685d3 /mcs/class/Microsoft.Build.Framework
parent1e25d67aef1c635ecc8d4949ca9abe79f6e91f9b (diff)
[bcl] Remove NET_3_5 defines from class libs
Diffstat (limited to 'mcs/class/Microsoft.Build.Framework')
-rw-r--r--mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/BuildEventArgs.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/BuildEventArgs.cs b/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/BuildEventArgs.cs
index b2e33740379..54bc7d3d758 100644
--- a/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/BuildEventArgs.cs
+++ b/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/BuildEventArgs.cs
@@ -39,9 +39,7 @@ namespace Microsoft.Build.Framework
string senderName;
int threadId;
DateTime timestamp;
-#if NET_3_5
BuildEventContext context;
-#endif
protected BuildEventArgs ()
: this (null, null, null)
@@ -63,9 +61,7 @@ namespace Microsoft.Build.Framework
this.senderName = senderName;
this.threadId = Thread.CurrentThread.GetHashCode ();
this.timestamp = eventTimestamp;
-#if NET_3_5
this.context = BuildEventContext.NewInstance ();
-#endif
}
public string HelpKeyword {
@@ -103,7 +99,6 @@ namespace Microsoft.Build.Framework
}
}
-#if NET_3_5
public BuildEventContext BuildEventContext {
get { return context; }
set {
@@ -112,7 +107,6 @@ namespace Microsoft.Build.Framework
context = value;
}
}
-#endif
}
}