aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ConfigurationNode.cs
diff options
context:
space:
mode:
authorlbsa712007-06-13 19:58:57 +0000
committerlbsa712007-06-13 19:58:57 +0000
commit69b3a8a9b84a0fb1918f728e27a92ab52128ae3c (patch)
tree4b34856cad308a93f23a8b593d1174b104c92b59 /Prebuild/src/Core/Nodes/ConfigurationNode.cs
parent* Applying danx0r's ODE patch (diff)
downloadopensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.zip
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.gz
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.bz2
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.xz
* First attempt at fixing differing build files on different .net flavours.
* And, as always, some bin ignores
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Nodes/ConfigurationNode.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Prebuild/src/Core/Nodes/ConfigurationNode.cs b/Prebuild/src/Core/Nodes/ConfigurationNode.cs
index e1488a7..390794f 100644
--- a/Prebuild/src/Core/Nodes/ConfigurationNode.cs
+++ b/Prebuild/src/Core/Nodes/ConfigurationNode.cs
@@ -45,7 +45,7 @@ namespace Prebuild.Core.Nodes
45 /// 45 ///
46 /// </summary> 46 /// </summary>
47 [DataNode("Configuration")] 47 [DataNode("Configuration")]
48 public class ConfigurationNode : DataNode, ICloneable 48 public class ConfigurationNode : DataNode, ICloneable, IComparable
49 { 49 {
50 #region Fields 50 #region Fields
51 51
@@ -173,5 +173,15 @@ namespace Prebuild.Core.Nodes
173 } 173 }
174 174
175 #endregion 175 #endregion
176 } 176
177 #region IComparable Members
178
179 public int CompareTo(object obj)
180 {
181 ConfigurationNode that = (ConfigurationNode) obj;
182 return this.m_Name.CompareTo(that.m_Name);
183 }
184
185 #endregion
186 }
177} 187}