mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-10-27 19:11:18 +00:00
Update WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
2db47bca9a
commit
91f19bc148
|
|
@ -27,7 +27,11 @@ namespace WelsonJS.Launcher
|
||||||
|
|
||||||
// load native libraries
|
// load native libraries
|
||||||
string appDataSubDirectory = "WelsonJS";
|
string appDataSubDirectory = "WelsonJS";
|
||||||
bool requireSigned = GetAppConfig("NativeRequireSigned").Equals("true");
|
bool requireSigned = string.Equals(
|
||||||
|
GetAppConfig("NativeRequireSigned"),
|
||||||
|
"true",
|
||||||
|
StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
NativeBootstrap.Init(
|
NativeBootstrap.Init(
|
||||||
dllNames: new[] { "ChakraCore.dll" },
|
dllNames: new[] { "ChakraCore.dll" },
|
||||||
appDataSubdirectory: appDataSubDirectory,
|
appDataSubdirectory: appDataSubDirectory,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user