從命令列建置
編譯器可由命令列啟動,方法是在命令列上輸入其可執行檔 (jsc.exe) 的名稱。 如需詳細資訊,請參閱從命令列編譯 JScript 程式碼。
命令列範例
編譯 File.js 產生 File.exe:
jsc File.js
編譯 File.js 產生 File.dll:
jsc /target:library File.js
編譯 File.js 和建立 My.exe:
jsc /out:My.exe File.js
編譯 test.js 和建立 .dll 檔案:
jsc /target:library test.js