コード例 #1
0
ファイル: Configuration.cs プロジェクト: NoiTheCat/RegexBot
        public Configuration(RegexBot bot)
        {
            _bot = bot;
            var dsc = Path.DirectorySeparatorChar;

            _configPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location)
                          + dsc + "settings.json";
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: NoiTheCat/RegexBot
        static void Main(string[] args)
        {
            RegexBot rb = new RegexBot();

            Console.CancelKeyPress += rb.Console_CancelKeyPress;
            AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;

            rb.Start().GetAwaiter().GetResult();
        }