BadScript 2
Loading...
Searching...
No Matches
BadScriptConsoleTerminalCommand.cs
Go to the documentation of this file.
8
10{
11 public BadScriptConsoleTerminalCommand() : base("The 'bs' commandline.", "bs") { }
12 public override Task Run(BadReplContext context, string[] args)
13 {
15 new BadDefaultRunSystem(context.Runtime),
16 new BadTestSystem(context.Runtime),
17 new BadRunSystem(context.Runtime),
18 new BadSettingsSystem(context.Runtime),
19 new BadHtmlSystem(context.Runtime),
21 new BadDocsSystem(context.Runtime)
22 );
23 /*
24 new BadDefaultRunSystem(runtime),
25 new BadTestSystem(runtime),
26 new BadRunSystem(runtime),
27 new BadSettingsSystem(runtime),
28 new BadHtmlSystem(runtime),
29 new BadRemoteConsoleSystem(runtime),
30 new BadDocsSystem(runtime)*/
31
32 return runner.Run(args);
33 }
34}
Class that can register console systems and run them.
Task< int > Run(string[] args)
Runs a system with the specified arguments.
Default Run System Is used to enable running scripts by simply typing "bs my/path/to/script....
Runs one or more BadScript scripts.
Contains the 'html' console command implementation.
Contains the 'html' console command implementation.
Contains the 'run' console command implementation.
Contains the 'settings' console command implementation.
Contains the 'test' command implementation.
Contains the Core Functionality of the Console Application.