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
path: root/mcs/build
diff options
context:
space:
mode:
authorJérémie Laval <jeremie.laval@gmail.com>2009-08-12 01:10:04 +0400
committerJérémie Laval <jeremie.laval@gmail.com>2009-08-12 01:10:04 +0400
commit2e214727239f2f03191d1d617676939d8e2ddf5c (patch)
tree99c12f646b67b7e6ece485580a4bb80d18049934 /mcs/build
parent4d8fa96830138ff45e2c84008eeb505ab85af5b3 (diff)
2009-08-11 Jérémie Laval <jeremie.laval@gmail.com>
In build/common/: * Consts.cs.in: Add BOOTSTRAP_NET_4_0. In class/corlib/System.Collections.Concurrent/: * ConcurrentQueue.cs: * IProducerConsumerCollection.cs: Add BOOTSTRAP_NET_4_0. In class/corlib/System.Runtime.CompilerServices/: * TypeForwardedFromAttribute.cs: Add BOOTSTRAP_NET_4_0. In class/corlib/System.Threading/: * Watch.cs: * SpinWait.cs: * CountdownEvent.cs: * CancellationToken.cs: * ICancelableOperation.cs: * CancellationTokenSource.cs: * CancellationTokenRegistration.cs: Add BOOTSTRAP_NET_4_0. In class/corlib/System/: * Funcs.cs: * Action.cs: * AggregateException.cs: Add BOOTSTRAP_NET_4_0. svn path=/trunk/mcs/; revision=139736
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/common/ChangeLog4
-rw-r--r--mcs/build/common/Consts.cs.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/build/common/ChangeLog b/mcs/build/common/ChangeLog
index 546006b63bd..eba7c3510b2 100644
--- a/mcs/build/common/ChangeLog
+++ b/mcs/build/common/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-11 Jérémie Laval <jeremie.laval@gmail.com>
+
+ * Consts.cs.in: Add BOOTSTRAP_NET_4_0.
+
2009-07-18 Michael Barker <mike@middlesoft.co.uk>
* Consts.cs.in: Added constant for Mono.Messaging.RabbitMQ.
diff --git a/mcs/build/common/Consts.cs.in b/mcs/build/common/Consts.cs.in
index 29bce04c7e2..341a4ea3f5b 100644
--- a/mcs/build/common/Consts.cs.in
+++ b/mcs/build/common/Consts.cs.in
@@ -122,7 +122,7 @@ internal
public const string AssemblySystem_ServiceProcess = "System.ServiceProcess, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a";
public const string AssemblySystem_Web = "System.Web, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a";
public const string AssemblySystem_Windows_Forms = "System.Windows.Forms, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089";
-#if NET_4_0
+#if NET_4_0 || BOOTSTRAP_NET_4_0
public const string AssemblySystemCore_3_5 = "System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
#endif
}