0

I am using SharpDevelop as a component in my application, but the log4net console window always appears whether I build it under the Release or Debug configuration.

How do I hide it as SharpDevelop do under the Release configuration?

Sameer Singh
  • 1,358
  • 1
  • 19
  • 47
Doyen
  • 11
  • 3

1 Answers1

0

Change the Output Type on your project so it is a Windows Application instead of a Console Application. The console window only appears when you build your application as a console application.

If you are using SharpDevelop to build your application, select the project in the Projects window, right click select Properties, then change the Output Type drop down list.

Matt Ward
  • 47,057
  • 5
  • 93
  • 94