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:
authorJb Evain <jbevain@gmail.com>2009-08-25 14:18:20 +0400
committerJb Evain <jbevain@gmail.com>2009-08-25 14:18:20 +0400
commit561bf6b6b234c3645c26a8bbe7d2d2addbb3957f (patch)
tree4b380e8add0ed77fe22f3bc1b49a50c436e89b4b /mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs
parentbbe7b2313f70b1073cf21564c71e182407dfa7aa (diff)
bring a net_2_0 feature set to monotouch
svn path=/trunk/mcs/; revision=140606
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs b/mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs
index 6ee4e787e8c..91e8fac3481 100644
--- a/mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs
+++ b/mcs/class/System.XML/System.Xml.Serialization/XmlSchemaImporter.cs
@@ -30,7 +30,7 @@
//
using System.Xml;
-#if !TARGET_JVM
+#if !TARGET_JVM && !MONOTOUCH
using System.CodeDom.Compiler;
#endif
using System.Xml.Schema;
@@ -43,7 +43,7 @@ using System.Xml.Serialization.Configuration;
namespace System.Xml.Serialization
{
public class XmlSchemaImporter
-#if NET_2_0
+#if NET_2_0 && !MONOTOUCH
: SchemaImporter
#endif
{
@@ -100,7 +100,7 @@ namespace System.Xml.Serialization
}
#if NET_2_0
-#if !TARGET_JVM
+#if !TARGET_JVM && !MONOTOUCH
[MonoTODO]
public XmlSchemaImporter (XmlSchemas schemas, CodeGenerationOptions options, CodeDomProvider codeProvider, ImportContext context)
{