* MSBuild.cs (BuildInParallel): Add missing property.
authorAnkit Jain <radical@corewars.org>
Thu, 24 Sep 2009 11:07:24 +0000 (11:07 -0000)
committerAnkit Jain <radical@corewars.org>
Thu, 24 Sep 2009 11:07:24 +0000 (11:07 -0000)
svn path=/trunk/mcs/; revision=142563

mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/ChangeLog
mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/MSBuild.cs

index 246b9a5654a9b8dc5c6741ec750e15b6fb24c985..4c1e384937cd0da4a9b8b5395afd113e49bce769 100644 (file)
@@ -1,3 +1,7 @@
+2009-09-23  Ankit Jain  <jankit@novell.com>
+
+       * MSBuild.cs (BuildInParallel): Add missing property.
+
 2009-09-10  Ankit Jain  <jankit@novell.com>
 
        * AssemblyResolver.cs: Move the SearchLogger to be a list of
index 16f8e5706a8e6ead930651dcb5d56cb9bc866a0d..fb35311f96fb5bc8ea0e50a51eeb2553428a5d70 100644 (file)
@@ -44,6 +44,7 @@ namespace Microsoft.Build.Tasks {
                bool            rebaseOutputs;
                bool            runEachTargetSeparately;
                bool            stopOnFirstFailure;
+               bool            buildInParallel;
                ITaskItem []    targetOutputs;
                string []       targets;
        
@@ -156,6 +157,11 @@ namespace Microsoft.Build.Tasks {
                        set { targets = value; }
                }
 
+               public bool BuildInParallel {
+                       get { return buildInParallel; }
+                       set { buildInParallel = value; }
+               }
+
                Dictionary<string, string> SplitPropertiesToDictionary ()
                {
                        if (properties == null)