Ejemplo n.º 1
0
 public SuiteCommand(AbpNuGetIndexUrlService nuGetIndexUrlService, NuGetService nuGetService, ICmdHelper cmdHelper)
 {
     CmdHelper             = cmdHelper;
     _nuGetIndexUrlService = nuGetIndexUrlService;
     _nuGetService         = nuGetService;
     Logger = NullLogger <SuiteCommand> .Instance;
 }
Ejemplo n.º 2
0
    public CliCommand(ICmdHelper cmdHelper, NuGetService nuGetService, AbpNuGetIndexUrlService nuGetIndexUrlService)
    {
        _cmdHelper            = cmdHelper;
        _nuGetService         = nuGetService;
        _nuGetIndexUrlService = nuGetIndexUrlService;

        Logger = NullLogger <CliCommand> .Instance;
    }
Ejemplo n.º 3
0
 public SuiteCommand(
     AbpNuGetIndexUrlService nuGetIndexUrlService,
     NuGetService nuGetService,
     ICmdHelper cmdHelper,
     CliHttpClientFactory cliHttpClientFactory)
 {
     CmdHelper             = cmdHelper;
     _nuGetIndexUrlService = nuGetIndexUrlService;
     _nuGetService         = nuGetService;
     _cliHttpClientFactory = cliHttpClientFactory;
     Logger = NullLogger <SuiteCommand> .Instance;
 }
Ejemplo n.º 4
0
 public SuiteCommand(AbpNuGetIndexUrlService nuGetIndexUrlService, NuGetService nuGetService)
 {
     _nuGetIndexUrlService = nuGetIndexUrlService;
     _nuGetService         = nuGetService;
     Logger = NullLogger <SuiteCommand> .Instance;
 }