示例#1
0
文件: Program.cs 项目: rjshaver/core
        public static void Main(string[] args)
        {
            DesktopPlatform.Start();

            Task.Run(async() => await new MainClass().Run(args)).Wait();

            DesktopPlatform.Finish();
        }
示例#2
0
文件: Program.cs 项目: rjshaver/core
        public static void Main(string[] args)
        {
            DesktopPlatform.Start();

            GoogleCalendarService google = new GoogleCalendarService(new TestConfig());

            DesktopPlatform.Finish();
        }