diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-18 14:44:08 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-18 14:44:08 +0700 |
commit | 4ce46775ce424f01f0fc65f2af382908ce409544 (patch) | |
tree | c51c6f2477a350b7ea8ea6b617c925cb2857a9ab /crypto/src/util | |
parent | Merge branch 'master' of git.bouncycastle.org:bc-csharp (diff) | |
download | BouncyCastle.NET-ed25519-4ce46775ce424f01f0fc65f2af382908ce409544.tar.xz |
No SerializableAttribute in PCL
Diffstat (limited to 'crypto/src/util')
-rw-r--r-- | crypto/src/util/io/StreamOverflowException.cs | 2 | ||||
-rw-r--r-- | crypto/src/util/io/pem/PemGenerationException.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/util/io/StreamOverflowException.cs b/crypto/src/util/io/StreamOverflowException.cs index d8fcb558c..36d21e23e 100644 --- a/crypto/src/util/io/StreamOverflowException.cs +++ b/crypto/src/util/io/StreamOverflowException.cs @@ -3,7 +3,7 @@ using System.IO; namespace Org.BouncyCastle.Utilities.IO { -#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE) [Serializable] #endif public class StreamOverflowException diff --git a/crypto/src/util/io/pem/PemGenerationException.cs b/crypto/src/util/io/pem/PemGenerationException.cs index b8edc622b..6b3958577 100644 --- a/crypto/src/util/io/pem/PemGenerationException.cs +++ b/crypto/src/util/io/pem/PemGenerationException.cs @@ -2,7 +2,7 @@ using System; namespace Org.BouncyCastle.Utilities.IO.Pem { -#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE) [Serializable] #endif public class PemGenerationException |