aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ProjectNode.cs
diff options
context:
space:
mode:
authorlbsa712007-06-13 21:06:39 +0000
committerlbsa712007-06-13 21:06:39 +0000
commit1876c70ebdc2b620797318a56fb4c2ea03fbef17 (patch)
treed1cdee5f1ddb4751b6cb41b97bb847ba337ad4c0 /Prebuild/src/Core/Nodes/ProjectNode.cs
parent* First attempt at fixing differing build files on different .net flavours. (diff)
downloadopensim-SC_OLD-1876c70ebdc2b620797318a56fb4c2ea03fbef17.zip
opensim-SC_OLD-1876c70ebdc2b620797318a56fb4c2ea03fbef17.tar.gz
opensim-SC_OLD-1876c70ebdc2b620797318a56fb4c2ea03fbef17.tar.bz2
opensim-SC_OLD-1876c70ebdc2b620797318a56fb4c2ea03fbef17.tar.xz
* Changed some more sort order issues
* Updated vs2005 files as well
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Nodes/ProjectNode.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Prebuild/src/Core/Nodes/ProjectNode.cs b/Prebuild/src/Core/Nodes/ProjectNode.cs
index 5f03c4d..c56dacc 100644
--- a/Prebuild/src/Core/Nodes/ProjectNode.cs
+++ b/Prebuild/src/Core/Nodes/ProjectNode.cs
@@ -81,7 +81,7 @@ namespace Prebuild.Core.Nodes
81 /// 81 ///
82 /// </summary> 82 /// </summary>
83 [DataNode("Project")] 83 [DataNode("Project")]
84 public class ProjectNode : DataNode 84 public class ProjectNode : DataNode, IComparable
85 { 85 {
86 #region Fields 86 #region Fields
87 87
@@ -496,5 +496,15 @@ namespace Prebuild.Core.Nodes
496 496
497 497
498 #endregion 498 #endregion
499 } 499
500 #region IComparable Members
501
502 public int CompareTo(object obj)
503 {
504 ProjectNode that = (ProjectNode)obj;
505 return this.m_Name.CompareTo(that.m_Name);
506 }
507
508 #endregion
509 }
500} 510}