10000
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 17040fe commit b7410b6Copy full SHA for b7410b6
src/runtime/runtime.cs
@@ -54,7 +54,7 @@ private static string GetDefaultDllName(Version version)
54
string prefix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "" : "lib";
55
string suffix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
56
? Invariant($"{version.Major}{version.Minor}")
57
- : Invariant($"{version.Major}.{version.Minor}m");
+ : Invariant($"{version.Major}.{version.Minor}");
58
string ext = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".dll"
59
: RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? ".dylib"
60
: ".so";
0 commit comments