Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Diamond <injektilo@mono-cvs.ximian.com>2002-05-27 23:17:13 +0400
committerJason Diamond <injektilo@mono-cvs.ximian.com>2002-05-27 23:17:13 +0400
commit4d82c52aebf33ced1d8b934323eccbb905419a9e (patch)
treeda951bb40c1830e4e80542f343377bae6390b615 /mcs/class/System.XML/Mono.System.XML.csproj
parent3c712f2b0cc37fe31edb707c5df92965f5c1e9a3 (diff)
In System.Xml:
* XmlDocumentNavigator.cs: Added file to directory. * XmlNode.cs (CreateNavigator): Implemented. (InnerText): Implemented. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of throwing exception. (Load(XmlReader)): Allow for namespace qualified attributes. * XmlElement.cs: Implemented GetAttribute(string, string) and both GetAttributeNode overloads. (SetAttributeNode(XmlAttribute)): Implemented. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string) and RemoveNamedItem(string, string). * XmlLinkedNode.cs (PreviousSibling): Implemented. * XmlTextReader.cs: Added code to maintain the order of attributes as they're parsed. XML doesn't require this but Microsoft's parser does it and matching them makes testing easier so now we have it, too. In Test: * XPathNavigatorTests.cs: Added file to directory. * AllTests.cs: Added XPathNavigatorTests to suite. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered like Microsoft's parser does it. svn path=/trunk/mcs/; revision=4971
Diffstat (limited to 'mcs/class/System.XML/Mono.System.XML.csproj')
-rw-r--r--mcs/class/System.XML/Mono.System.XML.csproj15
1 files changed, 10 insertions, 5 deletions
diff --git a/mcs/class/System.XML/Mono.System.XML.csproj b/mcs/class/System.XML/Mono.System.XML.csproj
index 91f95f00183..21d3819c1ef 100644
--- a/mcs/class/System.XML/Mono.System.XML.csproj
+++ b/mcs/class/System.XML/Mono.System.XML.csproj
@@ -141,11 +141,6 @@
BuildAction = "Compile"
/>
<File
- RelPath = "System.Xml\XmlCaseOrder.cs"
- SubType = "Code"
- BuildAction = "Compile"
- />
- <File
RelPath = "System.Xml\XmlCDataSection.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -181,6 +176,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "System.Xml\XmlDocumentNavigator.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "System.Xml\XmlDocumentType.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -350,6 +350,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "System.Xml.XPath\XmlCaseOrder.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "System.Xml.XPath\XmlDataType.cs"
SubType = "Code"
BuildAction = "Compile"