From ff09e2939346afca109a26bde778d328d24446ed Mon Sep 17 00:00:00 2001 From: Corey Kosak Date: Tue, 2 Jul 2024 00:42:24 -0400 Subject: [PATCH] fix(cppclient): Remove extension from dhclient and dhcore for cross-platform compatibility (#5706) Windows expects .dll and Linux expects .so, but the machinery behind LibraryImport seems to know to do the right thing. --- csharp/client/DeephavenClient/Interop/InteropSupport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/client/DeephavenClient/Interop/InteropSupport.cs b/csharp/client/DeephavenClient/Interop/InteropSupport.cs index c703469cfe7..83684b28c90 100644 --- a/csharp/client/DeephavenClient/Interop/InteropSupport.cs +++ b/csharp/client/DeephavenClient/Interop/InteropSupport.cs @@ -6,8 +6,8 @@ namespace Deephaven.DeephavenClient.Interop; internal class LibraryPaths { - internal const string Dhcore = "dhcore.dll"; - internal const string Dhclient = "dhclient.dll"; + internal const string Dhcore = "dhcore"; + internal const string Dhclient = "dhclient"; } ///