I have a Winforms project and a console project.
I was starting the console app from the Winforms app as an external process, but would like to compile both into a single exe, if possible.
I have brought them both into a single VS 2015 solution. Should I be able to accomplish this by converting the console app to a library?
Aside from all the reference, dependency and linker settings/paths, how would I pass the command line arguments to, and start the console app from the Winforms code. i.e. jump to the entry point of the console app? The solution builds OK so far.