Esempio n. 1
0
        private void AskForJobBinaryPath()
        {
            var cmd = new StringCommand('j', "Enter the path of the first job's binary", "Path:");

            new ConsoleHandler(cmd, cmd)
            {
                ImmediateExit = true
            }.Execute();
            this.JobBinaryPath = cmd.Answer;
        }
Esempio n. 2
0
        private void AskForModelPath()
        {
            var cmd = new StringCommand('m', "Enter the path of model file", "Path:");

            new ConsoleHandler(cmd, cmd)
            {
                ImmediateExit = true
            }.Execute();
            this.ModelFilePath = cmd.Answer;
        }