예제 #1
0
파일: App.xaml.cs 프로젝트: bollylu/Stepper
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            SplitArgs Args = new SplitArgs(Environment.GetCommandLineArgs());

            TraceFactory.AddTraceDefaultLogFilename();

            ApplicationInfo.ApplicationStart();
        }
예제 #2
0
파일: Program.cs 프로젝트: bollylu/Stepper
        static void Main(string[] args)
        {
            SplitArgs Args = new SplitArgs(args);

            //TraceFactory.AddTraceConsole();
            TraceFactory.AddTraceDefaultLogFilename();

            ApplicationInfo.ApplicationStart();

            Test();

            ConsoleExtension.Pause();
            ApplicationInfo.ApplicationStop();
        }