I have created a windows form app that does a few things before having a new application take over from there.
The new application needs to be a separate project within the same solution, using references for the functions to be called from the original app.
The original app will call different functions within the console app and the console app will do some processing and show output based on what has been called. Almost like a log.
The problem I am facing by adding a console app is that the console app closes immediately when the last line in main is run.
So the question is can a separate project be created that prints messages to console with persistence(Continuous running)?
It does not necessarily have to be a console output, but it would be preferred.
Appreciate the help.