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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Cecil.Cil/Symbols.cs')
-rw-r--r--Mono.Cecil.Cil/Symbols.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Mono.Cecil.Cil/Symbols.cs b/Mono.Cecil.Cil/Symbols.cs
index 8b56a24..f18b2c8 100644
--- a/Mono.Cecil.Cil/Symbols.cs
+++ b/Mono.Cecil.Cil/Symbols.cs
@@ -690,13 +690,10 @@ namespace Mono.Cecil.Cil {
}
public interface ISymbolReaderProvider {
-#if !PCL
ISymbolReader GetSymbolReader (ModuleDefinition module, string fileName);
-#endif
ISymbolReader GetSymbolReader (ModuleDefinition module, Stream symbolStream);
}
-#if !PCL
public class DefaultSymbolReaderProvider : ISymbolReaderProvider {
readonly bool throw_if_no_symbol;
@@ -745,9 +742,7 @@ namespace Mono.Cecil.Cil {
throw new NotSupportedException ();
}
}
-#endif
-#if !PCL
enum SymbolKind {
NativePdb,
PortablePdb,
@@ -832,7 +827,6 @@ namespace Mono.Cecil.Cil {
throw new ArgumentException ();
}
}
-#endif
#if !READ_ONLY
@@ -845,13 +839,10 @@ namespace Mono.Cecil.Cil {
public interface ISymbolWriterProvider {
-#if !PCL
ISymbolWriter GetSymbolWriter (ModuleDefinition module, string fileName);
-#endif
ISymbolWriter GetSymbolWriter (ModuleDefinition module, Stream symbolStream);
}
-#if !PCL
public class DefaultSymbolWriterProvider : ISymbolWriterProvider {
public ISymbolWriter GetSymbolWriter (ModuleDefinition module, string fileName)
@@ -871,7 +862,6 @@ namespace Mono.Cecil.Cil {
throw new NotSupportedException ();
}
}
-#endif
#endif
}
@@ -921,7 +911,6 @@ namespace Mono.Cecil {
return null;
}
-#if !PCL
public static string GetPdbFileName (string assemblyFileName)
{
return Path.ChangeExtension (assemblyFileName, ".pdb");
@@ -950,6 +939,5 @@ namespace Mono.Cecil {
stream.Position = position;
}
}
-#endif
}
}