Exemplo n.º 1
0
        public InstallCommand()
        {
            _storagePath        = Enable <StoragePathFeature>();
            _serviceCredentials = Enable <ServiceCredentialsFeature>();
            _listenUri          = Enable <ListenUriFeature>();

            Options.Add(
                "setup",
                "Install the service or reconfigure the binary location, then start the service",
                v => _setup = true);
        }
Exemplo n.º 2
0
 public RunCommand()
 {
     Options.Add("nologo", v => _nologo = true);
     _storagePath = Enable <StoragePathFeature>();
     _listenUri   = Enable <ListenUriFeature>();
 }