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:
authorjbevain <jbevain@gmail.com>2010-04-16 13:12:35 +0400
committerjbevain <jbevain@gmail.com>2010-04-16 13:12:35 +0400
commitc62aeac69281d27eefba1ea8eef540dabdc97a1e (patch)
treeec192fe8c09abe9dfa80f500bdaea60f406fbb35 /Mono.Security.Cryptography
parentd1bff1e2e8119eecb0f942924dd0f6015f411d9a (diff)
compile of the Compact Framework
Diffstat (limited to 'Mono.Security.Cryptography')
-rw-r--r--Mono.Security.Cryptography/CryptoService.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mono.Security.Cryptography/CryptoService.cs b/Mono.Security.Cryptography/CryptoService.cs
index 12d0d94..df903a3 100644
--- a/Mono.Security.Cryptography/CryptoService.cs
+++ b/Mono.Security.Cryptography/CryptoService.cs
@@ -29,12 +29,12 @@
using System;
using System.IO;
using System.Reflection;
-using System.Runtime.Serialization;
using System.Security.Cryptography;
#if !READ_ONLY
-#if !SILVERLIGHT
+#if !SILVERLIGHT && !CF
+using System.Runtime.Serialization;
using Mono.Security.Cryptography;
#endif
@@ -48,7 +48,7 @@ namespace Mono.Cecil {
static class CryptoService {
-#if !SILVERLIGHT
+#if !SILVERLIGHT && !CF
public static void StrongName (Stream stream, ImageWriter writer, StrongNameKeyPair key_pair)
{
int strong_name_pointer;
@@ -172,7 +172,7 @@ namespace Mono.Cecil {
}
}
-#if !SILVERLIGHT
+#if !SILVERLIGHT && !CF
static partial class Mixin {
public static RSA CreateRSA (this StrongNameKeyPair key_pair)