Exemplo n.º 1
0
        protected void Application_End()
        {
            SshServerConfig.StopSshServer();
            ScheduleConfig.StopAndWait();
            Logger.Info(AppInfomation.GetAppEndInfo());

            Process.GetCurrentProcess().Kill();
        }
Exemplo n.º 2
0
        protected void Application_Start()
        {
            HidingRequestResponse = HttpRuntime.UsingIntegratedPipeline;

            Logger.SetLogPath();
            Logger.Info(AppInfomation.GetAppStartingInfo());

            AreaRegistration.RegisterAllAreas();

            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);

            MefConfig.RegisterMef();
            ScheduleConfig.RegisterScheduler();

            GitCache.Initialize();

            Logger.Info(AppInfomation.GetAppStartedInfo());

            HidingRequestResponse = false;
        }
Exemplo n.º 3
0
 protected void Application_End()
 {
     ScheduleConfig.StopAndWait();
     Logger.Info(AppInfomation.GetAppEndInfo());
 }