Skip to content

Commit ff09e29

Browse files
authored
fix(cppclient): Remove extension from dhclient and dhcore for cross-platform compatibility (deephaven#5706)
Windows expects .dll and Linux expects .so, but the machinery behind LibraryImport seems to know to do the right thing.
1 parent 839e607 commit ff09e29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/client/DeephavenClient/Interop/InteropSupport.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
namespace Deephaven.DeephavenClient.Interop;
77

88
internal class LibraryPaths {
9-
internal const string Dhcore = "dhcore.dll";
10-
internal const string Dhclient = "dhclient.dll";
9+
internal const string Dhcore = "dhcore";
10+
internal const string Dhclient = "dhclient";
1111
}
1212

1313
/// <summary>

0 commit comments

Comments
 (0)