diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs b/WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs index 682a4f4..b15d93a 100644 --- a/WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs +++ b/WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs @@ -27,7 +27,11 @@ namespace WelsonJS.Launcher // load native libraries string appDataSubDirectory = "WelsonJS"; - bool requireSigned = GetAppConfig("NativeRequireSigned").Equals("true"); + bool requireSigned = string.Equals( + GetAppConfig("NativeRequireSigned"), + "true", + StringComparison.OrdinalIgnoreCase); + NativeBootstrap.Init( dllNames: new[] { "ChakraCore.dll" }, appDataSubdirectory: appDataSubDirectory,