I have a solution with a Console project and a WCFService project.
In the WCF I’ve added a reference to the Console.
How do I run the consolefrom the service?Process
Do I need to create a newusingSystem.Diagnostics;`?
Within the WCF I have the following method which is the point where I want to run the console:
public String WelComeMessage(String name) {
Process myConsole = new Process(); ///<<<maybe not required?
//<want run the console here
return String.Format("{0}, Welcome to http://blah.com", name);
}
So in VS it looks like this at the moment:

If all you really need to do is make use of the class(es) in the console app, then you can use the class directly instead of running it as a console app, e.g.