9

I am using ILMerge to merge the used libraries for a console application. After its merged, the resulting exe just finishes execution in a second and runs in the background(does not show its output for Console.WriteLine).
What Can i do to actually run it as a console application ?

Akshay J
  • 5,362
  • 13
  • 68
  • 105

1 Answers1

16

Run ILMerge with the command line option /target:exe

Mike Zboray
  • 39,828
  • 3
  • 90
  • 122