mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-04 18:00:26 +00:00
8371532108
Compiled for AnyCPU
44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using System.Configuration;
|
|
|
|
using log4net;
|
|
using log4net.Config;
|
|
//[assembly: log4net.Config.XmlConfigurator( Watch = true )]
|
|
[assembly: log4net.Config.XmlConfigurator( ConfigFile = "log4Net.config", Watch = true )]
|
|
|
|
namespace SCJMapper_V2
|
|
{
|
|
static class Program
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger ( System.Reflection.MethodBase.GetCurrentMethod( ).DeclaringType );
|
|
|
|
/* Log Levels Inc Priority
|
|
* ALL
|
|
* DEBUG
|
|
* INFO
|
|
* WARN
|
|
* ERROR
|
|
* FATAL
|
|
* OFF
|
|
* */
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main( )
|
|
{
|
|
log.InfoFormat( "\n" );
|
|
log.InfoFormat( "SCJMapper_V2 - Started" );
|
|
|
|
Application.EnableVisualStyles( );
|
|
Application.SetCompatibleTextRenderingDefault( false );
|
|
Application.Run( new MainForm( ) );
|
|
|
|
log.InfoFormat( "SCJMapper_V2 - Ended\n" );
|
|
}
|
|
}
|
|
}
|