Class ConsoleProgram<TStartup>
- Namespace
 - Codebelt.Bootstrapper.Console
 
- Assembly
 - Codebelt.Bootstrapper.Console.dll
 
The base entry point of an application responsible for registering its ConsoleStartup partner.
public abstract class ConsoleProgram<TStartup> : ProgramRoot<TStartup> where TStartup : ConsoleStartup
  Type Parameters
TStartupThe type containing the startup methods for the application.
- Inheritance
 - 
      
      
      ProgramRoot<TStartup>ConsoleProgram<TStartup>
 
Methods
CreateHostBuilder(string[])
Creates an IHostBuilder used to set up the host.
protected static IHostBuilder CreateHostBuilder(string[] args)
  Parameters
argsstring[]The command line arguments.
Returns
- IHostBuilder
 The initialized IHostBuilder.
See Also
ProgramRoot<TStartup>