JavaScript Editor Ajax toolkit     Ajax website 



Main Page

The compiler can be started at the command line by typing the name of its executable (jsc.exe) on the command line. For more information, see Compiling JScript Code from the Command Line.

Sample Command Lines

  • Compiles File.js producing File.exe:

    В CopyCode imageCopy Code
    jsc File.js 
  • Compiles File.js producing File.dll:

    В CopyCode imageCopy Code
    jsc /target:library File.js
  • Compiles File.js and creates My.exe:

    В CopyCode imageCopy Code
    jsc /out:My.exe File.js
  • Compile test.js and create a .dll:

    В CopyCode imageCopy Code
    jsc /target:library test.js

See Also

Tasks

Compiling JScript Code from the Command Line

Other Resources

JScript Compiler Options



JavaScript Editor Ajax toolkit     Ajax website


©