Example #1
0
        static void Main(string[] args)
        {
            var config = GetConfig();

            var hc = new HttpClient();

            hc.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", config.SpeechKey);

            var sdk = new SpeechServicesAPIv20(hc, true);

            sdk.BaseUri = new Uri($"https://{config.SpeechRegion}.cris.ai");

            CommandLineApplication <MainApp> app = new CommandLineApplication <MainApp>();

            app.HelpOption();
            app.VersionOptionFromAssemblyAttributes(typeof(Program).Assembly);
            app.Conventions
            .UseDefaultConventions()
            .UseConstructorInjection(GetServices(config, sdk));

            try
            {
                app.Execute(args);
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine(ex.InnerException?.Message);
            }
        }
Example #2
0
        static void Main(string[] args)
        {
            CommandLineApplication <Program> app = new CommandLineApplication <Program>();

            app.HelpOption();
            app.VersionOptionFromAssemblyAttributes(typeof(Program).Assembly);

            if (!File.Exists(Config.CONFIG_FILENAME))
            {
                Directory.CreateDirectory(Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".speech"));
                File.WriteAllText(Config.CONFIG_FILENAME, "[]");
            }

            var config = SafeJsonConvert.DeserializeObject <List <Config> >(File.ReadAllText(Config.CONFIG_FILENAME)).FirstOrDefault(c => c.Selected == true);

            if (config == null)
            {
                config = new Config("Anonymous", "", "northeurope");
            }

            var hc = new HttpClient();

            hc.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", config.SpeechKey);
            var sdk = new SpeechServicesAPIv20(hc, true);

            sdk.BaseUri = new Uri($"https://{config.SpeechRegion}.cris.ai");

            var services = new ServiceCollection()
                           .AddSingleton <Config>(config)
                           .AddSingleton <ISpeechServicesAPIv20>(sdk)
                           .BuildServiceProvider();

            app.Conventions.UseDefaultConventions().UseConstructorInjection(services);

            try
            {
                app.Execute(args);
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine(ex.InnerException?.Message);
            }
        }