public WhereCommandDescriptor(WhereService whereService)
        {
            Description = "Locates the installed version(s) of Visual Studio that satisfy the requested requirements.";

            Options = vsOptions
                      .With(propOption)
                      .With(listOption)
                      .With(workloads);

            this.whereService = whereService;
        }
Exemplo n.º 2
0
 public ClientCommand(ClientCommandDescriptor descriptor, WhereService whereService)
     : base(descriptor)
 {
     this.whereService = whereService;
 }
Exemplo n.º 3
0
 public UpdateCommand(UpdateCommandDescriptor descriptor, WhereService whereService, InstallerService installerService)
     : base(descriptor)
 {
     this.whereService     = whereService;
     this.installerService = installerService;
 }
Exemplo n.º 4
0
 public LogCommand(LogCommandDescriptor descriptor, WhereService whereService) : base(descriptor) =>
     this.whereService = whereService;