Beispiel #1
0
 public NuGetPackageService(ILogger logger, INuGetSettingsAccessor nuGetSettingsAccessor, ISolutionDiretoryManager solutionDiretoryManager, ISolutionManagerProvider solutionManagerProvider)
 {
     _logger = logger;
     _nuGetSettingsAccessor   = nuGetSettingsAccessor;
     _solutionDiretoryManager = solutionDiretoryManager;
     _solutionManagerProvider = solutionManagerProvider;
 }
Beispiel #2
0
        public ProjectService(INuGetPackageService nuGetPackageService, ISolutionDiretoryManager solutionDiretoryManager, ISolutionManagerProvider solutionManagerProvider)
        {
            _nuGetPackageService     = nuGetPackageService;
            _solutionDiretoryManager = solutionDiretoryManager;
            _solutionManagerProvider = solutionManagerProvider;

            InitialEvents();
        }