Thanks to visit codestin.com Credit goes to github.com
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 ddf93ae commit 1f44209Copy full SHA for 1f44209
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