Esempio n. 1
0
        static void Main()
        {
            Cef.Initialize(new CefSettings());

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            var appHost = new AppHost("http://localhost:1337/")
                .Start();

            Application.Run(new FormMain(appHost.GetStartUrl()));
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            AppUtils.ExportMonoSqliteDll();

            var appHost = new AppHost("http://localhost:1337/")
                .Start();

            "Listening on {0}".Print(appHost.BaseUrl);
            "Type Ctrl+C to quit..\n".Print();

            var startUrl = appHost.GetStartUrl();
            if (startUrl == appHost.BaseUrl)
            {
                "No .txt or .zip Apache Benchmark Results found, skipping initial import...".Print();
                "Use ab utility to generate Apache Benchmark .txt files to analyze.".Print();
            }

            Process.Start(startUrl);
            Thread.Sleep(Timeout.Infinite);
        }