You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
When I am trying to run the ChakraCoreHost sample project, the instruction
5. Run the sample by pressing Ctrl+F5 or using Debug > Start Without Debugging.
is not correct.
After I stepped through the code, I got that I supposed to provide a path to a js file such as
C:\Users\XXX\Desktop\temp\runSimple.js
to exercise the host's function, I create runSimple.js with content:
host.runScript('C:/Users/XXX/Desktop/temp/simple.js');
Where simple.js has content:
host.echo("wbc",1,2,3);
The text was updated successfully, but these errors were encountered:
@haichencheng are you talking about this one? Right you need to supply the script and the path as argument and that isn't clear from the readme. Let me fix this.
When I am trying to run the ChakraCoreHost sample project, the instruction
5. Run the sample by pressing Ctrl+F5 or using Debug > Start Without Debugging.
is not correct.
After I stepped through the code, I got that I supposed to provide a path to a js file such as
C:\Users\XXX\Desktop\temp\runSimple.js
to exercise the host's function, I create runSimple.js with content:
host.runScript('C:/Users/XXX/Desktop/temp/simple.js');
Where simple.js has content:
host.echo("wbc",1,2,3);
The text was updated successfully, but these errors were encountered: