aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ExcludeNode.cs
diff options
context:
space:
mode:
authorJeff Ames2008-03-17 20:55:21 +0000
committerJeff Ames2008-03-17 20:55:21 +0000
commit79209c429705beb57ad9b787718856ab2c9fd37c (patch)
tree6f459e172985bce8ffbfc09a5b9a4594dd881a62 /Prebuild/src/Core/Nodes/ExcludeNode.cs
parent* More almost completely unproductive log message fiddling (diff)
downloadopensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.zip
opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.gz
opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.bz2
opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.xz
Merged changes in Prebuild trunk up to r258 into OpenSim's Prebuild.
Hopefully this should make merging upstream easier. Building with NAnt should still work, but Visual Studio is untested.
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Nodes/ExcludeNode.cs27
1 files changed, 20 insertions, 7 deletions
diff --git a/Prebuild/src/Core/Nodes/ExcludeNode.cs b/Prebuild/src/Core/Nodes/ExcludeNode.cs
index 905626d..afc869d 100644
--- a/Prebuild/src/Core/Nodes/ExcludeNode.cs
+++ b/Prebuild/src/Core/Nodes/ExcludeNode.cs
@@ -26,9 +26,9 @@ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY O
26#region CVS Information 26#region CVS Information
27/* 27/*
28 * $Source$ 28 * $Source$
29 * $Author: jendave $ 29 * $Author: borrillis $
30 * $Date: 2006-01-31 16:35:39 +0100 (ti, 31 jan 2006) $ 30 * $Date: 2007-05-25 01:03:16 +0900 (Fri, 25 May 2007) $
31 * $Revision: 74 $ 31 * $Revision: 243 $
32 */ 32 */
33#endregion 33#endregion
34 34
@@ -49,7 +49,7 @@ namespace Prebuild.Core.Nodes
49 { 49 {
50 #region Fields 50 #region Fields
51 51
52 private string m_Name = "unknown"; 52 private string m_Pattern = "";
53 53
54 #endregion 54 #endregion
55 55
@@ -63,11 +63,23 @@ namespace Prebuild.Core.Nodes
63 { 63 {
64 get 64 get
65 { 65 {
66 return m_Name; 66 return m_Pattern;
67 } 67 }
68 } 68 }
69 69
70 #endregion 70 /// <summary>
71 /// Gets the pattern.
72 /// </summary>
73 /// <value>The pattern.</value>
74 public string Pattern
75 {
76 get
77 {
78 return m_Pattern;
79 }
80 }
81
82 #endregion
71 83
72 #region Public Methods 84 #region Public Methods
73 85
@@ -77,7 +89,8 @@ namespace Prebuild.Core.Nodes
77 /// <param name="node">The node.</param> 89 /// <param name="node">The node.</param>
78 public override void Parse(XmlNode node) 90 public override void Parse(XmlNode node)
79 { 91 {
80 m_Name = Helper.AttributeValue(node, "name", m_Name); 92 m_Pattern = Helper.AttributeValue( node, "name", m_Pattern );
93 m_Pattern = Helper.AttributeValue(node, "pattern", m_Pattern );
81 } 94 }
82 95
83 #endregion 96 #endregion