From edc7878b5af5f6554d003791c8ff8335c1c2f91a Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Tue, 22 Jan 2019 17:03:51 -0800 Subject: [PATCH] Remove hardcoded .so from MI_PlatformSpecific.cs --- .../Native/MI_PlatformSpecific.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Management.Infrastructure/Native/MI_PlatformSpecific.cs b/src/Microsoft.Management.Infrastructure/Native/MI_PlatformSpecific.cs index dd65578..db8bc85 100644 --- a/src/Microsoft.Management.Infrastructure/Native/MI_PlatformSpecific.cs +++ b/src/Microsoft.Management.Infrastructure/Native/MI_PlatformSpecific.cs @@ -37,8 +37,8 @@ internal static IntPtr StringToPtr(string str) internal const CharSet AppropriateCharSet = CharSet.Ansi; internal const CallingConvention MiMainCallConvention = CallingConvention.Cdecl; internal const CallingConvention MiCallConvention = CallingConvention.Cdecl; - internal const string MI = "libmi.so"; - internal const string MOFCodecHost = "libmi.so"; + internal const string MI = "libmi"; + internal const string MOFCodecHost = "libmi"; internal static string PtrToString(IntPtr ptr) {