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

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