mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
Update WelsonJS.Service binaries and example
This commit is contained in:
parent
def32aa559
commit
8c247adede
BIN
bin/x86/WelsonJS.Service.exe
Normal file
BIN
bin/x86/WelsonJS.Service.exe
Normal file
Binary file not shown.
3
bin/x86/WelsonJS.Service.exe.config
Normal file
3
bin/x86/WelsonJS.Service.exe.config
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
BIN
bin/x86/WelsonJS.Service.pdb
Normal file
BIN
bin/x86/WelsonJS.Service.pdb
Normal file
Binary file not shown.
|
@ -18,4 +18,19 @@ function main(args) {
|
||||||
//Toolkit.create();
|
//Toolkit.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.main = main;
|
function onServiceStart() {
|
||||||
|
return "onServiceStart recevied";
|
||||||
|
}
|
||||||
|
|
||||||
|
function onServiceStop() {
|
||||||
|
return "onServiceStop recevied";
|
||||||
|
}
|
||||||
|
|
||||||
|
function onServiceElapsedTime() {
|
||||||
|
return "onServiceElapsedTime recevied";
|
||||||
|
}
|
||||||
|
|
||||||
|
exports.main = main;
|
||||||
|
exports.onServiceStart = onServiceStart;
|
||||||
|
exports.onServiceStop = onServiceStop;
|
||||||
|
exports.onServiceElapsedTime = onServiceElapsedTime;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user