I searched and found only fragments of the answer. I am building tool for distribution across the studio. I have an .exe command line program ( a tool which that converts asset formats ) inlcuded as a resource in my VS project.
Based on another thread, I set the inluded .exe's "Copy To Output Directory" property to "copy if newer"; So that it will be included when others install it.
Now i want to call this executable, with arguments, by passing a string that is a built command line, such as
"C:\path\to\myProgram.exe -inputFilename -outputFilename -options"
the problem: what do I really need for C:\path\to\myProgram.exe ? where is my command line executable going to end up installed on the end user's machine?
or does embedding it as a resource open a new way of calling it(with args)?