[forgot to CC the list]

Atsushi,

Thanks for the response. Attached is the command line I tried and a list of errors I received trying to compile. It looks like System.Xml uses quite a few classes that aren't available in the CF. We could include Mono's mscorlib.dll and System.dll, but that's getting kind of big for a Pocket PC app. Maybe we'll roll our own stripped-down XPath stuff (we don't need a full implementation)...

Andrew

At 12:33 AM 2/28/2004, you wrote:
Hello,

I think you can build System.Xml.dll with your compact framework.
At least, System.Xml.dll is independent of Mono's System.dll (I can
build System.Xml.dll with MS's System.dll - at least non CF one).

However I haven't ever used compact framework, so if there are some
problems, please post the details (it will be fixed, at least for
the future versions of the mono compact framework).

Thanks,
Atsushi Eno

Andrew Vardeman wrote:

Hello.
Here at work we're developing an app for the Compact Framework, and we were hoping to grab a chunk of Mono to get XPath functionality that's missing from the CF. My original hope was that I could just reference Mono's System.Xml.dll from my CF project in VS.NET, but when I do this and deploy the app and the dll to my PocketPC, it bombs on startup with this error:
*************************************
A native exception occurred.
ExceptionCode: 0x80000002
ExceptionAddress: 0x00df0e20
*************************************
This seems to be because Mono's System.Xml.dll references the full System.dll rather than the CF version. Does this sound correct? On a quick glance through the System.Xml directories in my Mono source distribution, I didn't see any unmanaged code. Or is this what I'd get if Mono tried to use a method not available in the CF?
I used a .NET assembly viewer to compare Mono's System.Xml.dll to the CF version to see if I spotted any obvious differences. The only thing I could figure is that Mono's dll references a System.dll with this full name:
System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
and the CF dll references:
System.Xml, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=969db8053d3322ac


I guess my question is, would rebuilding Mono's System.Xml.dll against the CF libraries likely make everything magically work, or is my wild-stab guess way off the mark? I admit that my understanding of the guts of Windows, the CLR, etc. is extremely limited.
Thanks,
Andrew Vardeman
_______________________________________________
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
C:\monoBuild\mcs-0.30.2\mcs-0.30.1\class\System.XML>csc.exe /lib:"C:\Program 
Files\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE" /
lib:../../class/lib /nologo /optimize -d:NET_1_1 -d:ONLY_1_1 /debug+ /debug:full 
/noconfig /unsafe /lib:/usr/local/lib /noconfig /r:"C:\Program Files\Microsoft
Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE\mscorlib.dll" 
/r:"C:\Program Files\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5
000\Windows CE\System.dll" /target:library /out:../../class/lib/System.Xml.dll 
@../../build/deps/System.Xml.dll.response /nowarn:1595 /nostdlib
warning CS2023: Ignoring /noconfig option because it was specified in a response file
Mono.Xml.Xsl\Compiler.cs(13,14): error CS0234: The type or namespace name 'CodeDom' 
does not exist in the class or namespace 'System' (are you missing an assembly 
reference?)
Mono.Xml.Xsl\MSXslScriptManager.cs(11,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\MSXslScriptManager.cs(12,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\ScriptCompilerInfo.cs(10,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\ScriptCompilerInfo.cs(11,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\XslAttributeSet.cs(13,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\XslKey.cs(13,14): error CS0234: The type or namespace name 'CodeDom' does 
not exist in the class or namespace 'System' (are you missing an assembly reference?)
Mono.Xml.Xsl\XslOutput.cs(15,14): error CS0234: The type or namespace name 'CodeDom' 
does not exist in the class or namespace 'System' (are you missing an assembly 
reference?)
Mono.Xml.Xsl\XslStylesheet.cs(13,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
Mono.Xml.Xsl\XsltCompiledContext.cs(11,14): error CS0234: The type or namespace name 
'CodeDom' does not exist in the class or namespace 'System' (are you missing an 
assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(10,14): error CS0234: The type or 
namespace name 'CodeDom' does not exist in the class or namespace 'System' (are you 
missing an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(11,14): error CS0234: The type or 
namespace name 'CodeDom' does not exist in the class or namespace 'System' (are you 
missing an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(11,14): error CS0234: The type or 
namespace name 'CodeDom' does not exist in the class or namespace 'System' (are you 
missing an assembly reference?)
System.Xml.Serialization\XmlNodeEventHandler.cs(13,3): error CS0246: The type or 
namespace name 'Serializable' could not be found (are you missing a using directive or 
an assembly reference?)
System.Xml.Serialization\XmlElementEventHandler.cs(13,3): error CS0246: The type or 
namespace name 'Serializable' could not be found (are you missing a using directive or 
an assembly reference?)
System.Xml.Serialization\XmlSerializationWriter.cs(23,3): error CS0246: The type or 
namespace name 'ObjectIDGenerator' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlSerializationWriteCallback.cs(14,3): error CS0246: The 
type or namespace name 'Serializable' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlSerializationReadCallback.cs(14,3): error CS0246: The type 
or namespace name 'Serializable' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlSerializationFixupCallback.cs(14,3): error CS0246: The 
type or namespace name 'Serializable' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlSerializationCollectionFixupCallback.cs(14,3): error 
CS0246: The type or namespace name 'Serializable' could not be found (are you missing 
a using directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(20,3): error CS0246: The type or namespace 
name 'CodeNamespace' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(21,3): error CS0246: The type or namespace 
name 'CodeCompileUnit' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(22,3): error CS0246: The type or namespace 
name 'CodeAttributeDeclarationCollection' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(32,27): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(36,27): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(49,10): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(57,35): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(63,35): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(68,35): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(123,31): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(128,62): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(141,49): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(148,49): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(153,53): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(159,52): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(169,54): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(180,50): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(186,49): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(196,56): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(210,57): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(217,63): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(225,61): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(233,45): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlCodeExporter.cs(244,52): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\XmlAttributeEventHandler.cs(13,3): error CS0246: The type or 
namespace name 'Serializable' could not be found (are you missing a using directive or 
an assembly reference?)
System.Xml.Serialization\UnreferencedObjectEventHandler.cs(13,3): error CS0246: The 
type or namespace name 'Serializable' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(18,3): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(19,3): error CS0246: The type or 
namespace name 'CodeCompileUnit' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(20,3): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(27,28): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(31,28): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(44,10): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(52,35): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(57,35): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(87,32): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(92,62): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(100,49): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(107,53): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(113,52): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(122,54): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(131,61): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(139,45): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\SoapCodeExporter.cs(149,52): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(17,3): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(18,3): error CS0246: The type or 
namespace name 'CodeCompileUnit' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(19,3): error CS0246: The type or 
namespace name 'CodeAttributeDeclarationCollection' could not be found (are you 
missing a using directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(24,28): error CS0246: The type or 
namespace name 'CodeNamespace' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(90,48): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(100,30): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(156,3): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(168,33): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(187,31): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(220,34): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(241,36): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(254,32): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(283,38): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(345,42): error CS0246: The type or 
namespace name 'CodeTypeMember' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(353,42): error CS0246: The type or 
namespace name 'CodeTypeMember' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(359,17): error CS0246: The type or 
namespace name 'CodeAttributeArgument' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(364,17): error CS0246: The type or 
namespace name 'CodeAttributeArgument' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(369,17): error CS0246: The type or 
namespace name 'CodeAttributeArgument' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(374,10): error CS0246: The type or 
namespace name 'CodeAttributeArgument' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(379,35): error CS0246: The type or 
namespace name 'CodeTypeMember' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(385,21): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(395,61): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(399,48): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(403,48): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(407,52): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(411,51): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(415,53): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(419,49): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(423,48): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(427,55): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(431,56): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(435,62): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(439,60): error CS0246: The type or 
namespace name 'CodeTypeDeclaration' could not be found (are you missing a using 
directive or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(443,44): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Serialization\MapCodeGenerator.cs(447,51): error CS0246: The type or 
namespace name 'CodeMemberField' could not be found (are you missing a using directive 
or an assembly reference?)
System.Xml.Schema\XmlSchemaException.cs(22,32): error CS0246: The type or namespace 
name 'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Schema\XmlSchemaException.cs(105,38): error CS0246: The type or namespace 
name 'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Schema\XmlSchemaException.cs(12,3): error CS0246: The type or namespace 
name 'Serializable' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Schema\XmlSchemaAnyAttribute.cs(65,12): error CS0246: The type or namespace 
name 'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Schema\XmlSchemaAny.cs(85,12): error CS0246: The type or namespace name 
'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Xsl\XsltException.cs(38,28): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Xsl\XsltException.cs(86,39): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Xsl\XsltException.cs(18,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml.Xsl\XsltCompileException.cs(29,35): error CS0246: The type or namespace 
name 'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Xsl\XsltCompileException.cs(55,39): error CS0246: The type or namespace 
name 'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.Xsl\XsltCompileException.cs(18,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml.XPath\Iterator.cs(824,3): error CS0246: The type or namespace name 
'SortedList' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml.XPath\XPathException.cs(19,29): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.XPath\XPathException.cs(39,39): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml.XPath\XPathException.cs(14,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlUrlResolver.cs(20,3): error CS0246: The type or namespace name 
'WebClient' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlUrlResolver.cs(21,3): error CS0246: The type or namespace name 
'WebClient' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlTokenizedType.cs(11,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlSecureResolver.cs(62,3): error CS0246: The type or namespace name 
'PermissionSet' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlSecureResolver.cs(76,26): error CS0246: The type or namespace name 
'PermissionSet' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlNodeOrder.cs(11,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\XmlException.cs(39,27): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml\XmlException.cs(100,39): error CS0246: The type or namespace name 
'SerializationInfo' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml\XmlException.cs(15,3): error CS0246: The type or namespace name 
'Serializable' could not be found (are you missing a using directive or an assembly 
reference?)
System.Xml\DTDValidatingReader.cs(62,3): error CS0246: The type or namespace name 
'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml\DTDObjectModel.cs(796,3): error CS0246: The type or namespace name 
'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
System.Xml\DTDObjectModel.cs(847,32): error CS0246: The type or namespace name 
'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
Mono.Xml.Schema\XsdWildcard.cs(35,10): error CS0246: The type or namespace name 
'StringCollection' could not be found (are you missing a using directive or an 
assembly reference?)
Assembly\AssemblyInfo.cs(42,12): error CS0246: The type or namespace name 
'AllowPartiallyTrustedCallers' could not be found (are you missing a using directive 
or an assembly reference?)

Reply via email to