Prompting the user in the Eclipse external tool run configuration is simple enough:
${string_prompt:"Enter a string":"DefaultString"}
However, is there a way for me to configure my run configuration to use this as two separate arguments to my external tool? Something that would result in:
my.exe --arg1=${string_prompt1} --arg2=${string_prompt1}
I definitely don't want to push this logic into the application, itself. I just want to simplify a local test build configuration. Any ideas?