diff --git a/src/Cryptography/NSec.Cryptography.csproj b/src/Cryptography/NSec.Cryptography.csproj index 4f7082fe..f984ade5 100644 --- a/src/Cryptography/NSec.Cryptography.csproj +++ b/src/Cryptography/NSec.Cryptography.csproj @@ -1,7 +1,8 @@  - net8.0 + net8.0 + $(TargetFrameworks);net8.0-ios diff --git a/src/Experimental/NSec.Experimental.csproj b/src/Experimental/NSec.Experimental.csproj index 466a356a..c28f0d52 100644 --- a/src/Experimental/NSec.Experimental.csproj +++ b/src/Experimental/NSec.Experimental.csproj @@ -1,7 +1,8 @@  - net8.0 + net8.0 + $(TargetFrameworks);net8.0-ios diff --git a/src/Interop/Interop.Libraries.cs b/src/Interop/Interop.Libraries.cs index e6ffc372..c178edfa 100644 --- a/src/Interop/Interop.Libraries.cs +++ b/src/Interop/Interop.Libraries.cs @@ -2,6 +2,10 @@ internal static partial class Interop { private static class Libraries { +#if IOS + internal const string Libsodium = "__Internal"; +#else internal const string Libsodium = "libsodium"; +#endif } }