I want to make a c# program that can be run as a CLI or GUI application depending on what flags are passed into it. Can this be done?
I have found these related questions, but they don't exactly cover my situation:
|
I want to make a c# program that can be run as a CLI or GUI application depending on what flags are passed into it. Can this be done? I have found these related questions, but they don't exactly cover my situation: |
|||||
|
|
Jdigital's answer points to Raymond Chen's blog, which explains why you can't have an application that's both a console program and a non-console Cade's answer points to an article about running a .Net WinForms application with a console. It uses the technique of calling Chen's article points to an article by Junfeng Zhang that explains a couple of other techniques. The first is what devenv uses. It works by actually having two programs. One is devenv.exe, which is the main GUI program, and the other is devenv.com, which handles console-mode tasks, but if it's used in a non-console-like manner, it forwards its tasks to devenv.exe and exits. The technique relies on the Win32 rule that com files get chosen ahead of exe files when you type a command without the file extension. There's a simpler variation on this that the Windows Script Host does. It provides two completely separate binaries, wscript.exe and cscript.exe. Likewise, Java provides java.exe for console programs and javaw.exe for non-console programs. Junfeng's second technique is what ildasm uses. He quotes the process that ildasm's author went through when making it run in both modes. Ultimately, here's what the it does:
It's not enough to simply call So the first instance restarts itself (with an extra command-line parameter, I suppose). When you call The side effect of this technique is that when you start the program from a GUI interface, there will still be a console. It will flash on the screen momentarily and then disappear. The part in Junfeng's article about using editbin to change the program's console-mode flag is a red herring, I think. Your compiler or development environment should provide a setting or option to control which kind of binary it creates. There should be no need to modify anything afterward. The bottom line, then, is that you can either have two binaries, or you can have a momentary flicker of a console window. Once you decide which is the lesser evil, you have your choice of implementations.
|
||||
|
|
|
Check out Raymond's blog on this topic: http://blogs.msdn.com/oldnewthing/archive/2009/01/01/9259142.aspx His first sentence: "You can't, but you can try to fake it." |
|||||
|
|
http://www.csharp411.com/console-output-from-winforms-application/ Just check the command line arguments before the WinForms I should add that in .NET it is RIDICULOUSLY easy to simply make a console and GUI projects in the same solution which share all their assemblies except main. And in this case, you could make the command line version simply launch the GUI version if it is launched with no parameters. You would get a flashing console. |
|||||
|
|
I know my answer is coming in late, but I think the preferred technique is what Rob called the devenv technique of using two executables: a launcher ".com" and the original ".exe". This is not that tricky to use if you have the boilerplate code to work with (see below link). The technique uses tricks to have that ".com" be a proxy for the stdin/stdout/stderr and launch the same-named .exe file. This give the behavior of allowing the program to preform in a command line mode when called form a console (potentially only when certain command line args are detected) while still being able to launch as a GUI application free of a console. I hosted a project called dualsubsystem on google code that updates an old codeguru solution of this technique and provides the source code and working example binaries. |
|||
|
|
|
There is an easy way to do what you want. I'm always using it when writing apps that should have both a CLI and a GUI. You have to set your "OutputType" to "ConsoleApplication" for this to work.
|
|||
|
|
In short, there's no reason why not. It's just in how you structure your code. The best way to see this may be to create ConsoleApplication1 and WindowsFormsApplication1 and examine the code in Program.cs for both of them. It's easy to branch one way or the other depending on your command-line flags. EDIT: I was sure we had done this very thing in-house here, but it sounds like perhaps there's more to it than just that. My curiosity is piqued now... time to go play. ;) |
||||
|
|
|||
|
|
|
I have written up an alternative approach which avoids the console flash. http://www.tillett.info/2013/05/13/how-to-create-a-windows-program-that-works-as-both-as-a-gui-and-console-application/ |
|||
|
|