From 522deaf74c9c119d360ebf42ca9b803eab029434 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 21 Jun 2022 10:46:09 +0700 Subject: Update defines --- crypto/src/util/Platform.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/src/util') diff --git a/crypto/src/util/Platform.cs b/crypto/src/util/Platform.cs index 040b0786e..547cef3fa 100644 --- a/crypto/src/util/Platform.cs +++ b/crypto/src/util/Platform.cs @@ -181,10 +181,10 @@ namespace Org.BouncyCastle.Utilities internal static string ToUpperInvariant(string s) { -#if NET_1_1 - return s.ToUpper(CultureInfo.InvariantCulture); -#else +#if PORTABLE return s.ToUpperInvariant(); +#else + return s.ToUpper(CultureInfo.InvariantCulture); #endif } -- cgit 1.4.1