We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de69f1f commit 27087b9Copy full SHA for 27087b9
Yubico.Core/src/Yubico/PlatformInterop/macOS/Interop.Libraries.cs
@@ -14,10 +14,17 @@
14
15
namespace Yubico.PlatformInterop
16
{
17
+
18
internal static partial class Libraries
19
20
+#if NET8_0_OR_GREATER
21
+ internal const string CoreFoundation = "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation";
22
+ internal const string IOKitFramework = "/System/Library/Frameworks/IOKit.framework/IOKit";
23
+ internal const string WinSCard = "/System/Library/Frameworks/PCSC.framework/PCSC";
24
+#else
25
internal const string CoreFoundation = "CoreFoundation.framework/CoreFoundation";
26
internal const string IOKitFramework = "IOKit.framework/IOKit";
27
internal const string WinSCard = "PCSC.framework/PCSC";
28
}
29
+#endif
30
0 commit comments