* Project.cs (InitializeProperties): Set 'MSBuildProjectDefaultTargets'
authorAnkit Jain <radical@corewars.org>
Thu, 24 Sep 2009 11:08:17 +0000 (11:08 -0000)
committerAnkit Jain <radical@corewars.org>
Thu, 24 Sep 2009 11:08:17 +0000 (11:08 -0000)
reserved property.

svn path=/trunk/mcs/; revision=142566

mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/ChangeLog
mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Project.cs

index f9b30bbc14706964ab111fb91ef2b1c4f58e42fd..1e28086fc33aa75d530e8274d1e9d3bb6c47df61 100644 (file)
@@ -1,3 +1,8 @@
+2009-09-24  Ankit Jain  <jankit@novell.com>
+
+       * Project.cs (InitializeProperties): Set 'MSBuildProjectDefaultTargets'
+       reserved property.
+
 2009-09-10  Ankit Jain  <jankit@novell.com>
 
        * BuildItem.cs (Evaluate): Metadata from "Include" should be,
index 7eea664ba0d89beb2509a832ef66455fda5bf15f..444cd27752be82dd8d3ac6bfc5e94f2e9253e62d 100644 (file)
@@ -879,6 +879,7 @@ namespace Microsoft.Build.BuildEngine {
                        EvaluatedProperties.AddProperty (new BuildProperty ("MSBuildBinPath", parentEngine.BinPath, PropertyType.Reserved));
                        EvaluatedProperties.AddProperty (new BuildProperty ("MSBuildToolsPath", parentEngine.BinPath, PropertyType.Reserved));
                        EvaluatedProperties.AddProperty (new BuildProperty ("MSBuildExtensionsPath", ExtensionsPath, PropertyType.Reserved));
+                       EvaluatedProperties.AddProperty (new BuildProperty ("MSBuildProjectDefaultTargets", DefaultTargets, PropertyType.Reserved));
 
                        // FIXME: make some internal method that will work like GetDirectoryName but output String.Empty on null/String.Empty
                        string projectDir;