I\'m developing an application which acts as a GUI for Minecraft Server (runs as a console Java application).
I have finished it and I also want to add a console in
You cannot target both subsystem gui and console in the same module (msdn).
gui
console
Instead, you could add a separate console application that uses SOAP to communicate with your application. Take a look at WCF to achieve this task.