Execタスクで次のことを実行したい
commandLine = [ 'my_executable_path\\' + executable.exe ,
argument1,
argument2,
argument3 ]
代わりにこのようなことをすることは可能ですか?
//...dynamic creation of a List/Array/whatever
commandLine = [ 'my_executable_path\\' + executable.exe ,
myArgumentsList ]