* Updates defaults to disclude cs/vb/js from the allowed compilers by default
parent
c34805d573
commit
29fe003152
|
@ -635,7 +635,9 @@ DefaultCompileLanguage=lsl
|
|||
; Specify what compilers are allowed to be used
|
||||
; Note vb only works on Windows for now (Mono lacks VB compile support)
|
||||
; Valid languages are: lsl, cs, js and vb
|
||||
AllowedCompilers=lsl,cs,js,vb
|
||||
; AllowedCompilers=lsl,cs,js,vb. *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
|
||||
AllowedCompilers=lsl
|
||||
|
||||
|
||||
; Compile scripts with debugging
|
||||
; Probably a thousand times slower, but gives you a line number when something goes wrong.
|
||||
|
@ -766,7 +768,10 @@ WriteScriptSourceToDebugFile = false
|
|||
; Default language for scripts
|
||||
DefaultCompileLanguage = lsl
|
||||
; List of allowed languages (lsl,vb,js,cs)
|
||||
AllowedCompilers = lsl,vb,js,cs
|
||||
; AllowedCompilers=lsl,cs,js,vb.
|
||||
; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
|
||||
AllowedCompilers=lsl
|
||||
|
||||
; Compile debug info (line numbers) into the script assemblies
|
||||
CompileWithDebugInformation = true
|
||||
; Allow the use of os* functions (some are dangerous)
|
||||
|
|
Loading…
Reference in New Issue