Issue was solved - I edit this post with the right code.
I am trying to wrote the \"main\" function that initialize the log4net logger + attachment
The value to use for the type attribute is a fully-qualified name of the class. This is the full path to the class for the appender (namespace + class name), followed by the name of the assembly that it is in. For your code, this will be (assuming that your assembly is called WindowsFormsApplication1
- you can check this in the properties of your project):
<appender name="MessageBoxAppender"
type="WindowsFormsApplication1.MessageBoxAppender, WindowsFormsApplication1">
</appender>