* SolutionParser.cs (ParseSolution): Ignore GlobalSection
authorAnkit Jain <radical@corewars.org>
Fri, 28 May 2010 10:48:55 +0000 (10:48 -0000)
committerAnkit Jain <radical@corewars.org>
Fri, 28 May 2010 10:48:55 +0000 (10:48 -0000)
'MonoDevelopProperties'.

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

mcs/tools/xbuild/ChangeLog
mcs/tools/xbuild/SolutionParser.cs

index 5c6c0b5cd7122693ae9e4842f26352252e8c4a83..a4fc65f3b30ae3324e6eb3fffb214b9cc68b5c47 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-28  Ankit Jain  <jankit@novell.com>
+
+       * SolutionParser.cs (ParseSolution): Ignore GlobalSection
+       'MonoDevelopProperties'.
+
 2010-05-05  Ankit Jain  <jankit@novell.com>
 
        Fix bug #599454.
index c2cece8e9afc9c2e1c48f80df261e53b9bfc5f72..70748c8698fcf75b1858ec07e55c9607d078f20c 100644 (file)
@@ -250,6 +250,8 @@ namespace Mono.XBuild.CommandLine {
                                                break;
                                        case "NestedProjects":
                                                break;
+                                       case "MonoDevelopProperties":
+                                               break;
                                        default:
                                                RaiseWarning (0, string.Format("Don't know how to handle GlobalSection {0}, Ignoring.", sectionType));
                                                break;