Exemple #1
0
 public PackageRestoreDataSourceMocked(UnconfiguredProject project,
                                       IPackageRestoreUnconfiguredInputDataSource dataSource,
                                       IProjectAsynchronousTasksService projectAsynchronousTasksService,
                                       IVsSolutionRestoreService3 solutionRestoreService,
                                       IFileSystem fileSystem,
                                       IProjectDiagnosticOutputService logger,
                                       IProjectDependentFileChangeNotificationService projectDependentFileChangeNotificationService,
                                       IVsSolutionRestoreService4 solutionRestoreService4,
                                       PackageRestoreSharedJoinableTaskCollection sharedJoinableTaskCollection)
     : base(project, dataSource, projectAsynchronousTasksService, solutionRestoreService, fileSystem, logger, projectDependentFileChangeNotificationService, solutionRestoreService4, sharedJoinableTaskCollection)
 {
 }
Exemple #2
0
 public PackageRestoreDataSource(
     UnconfiguredProject project,
     IPackageRestoreUnconfiguredInputDataSource dataSource,
     [Import(ExportContractNames.Scopes.UnconfiguredProject)] IProjectAsynchronousTasksService projectAsynchronousTasksService,
     IVsSolutionRestoreService3 solutionRestoreService,
     IFileSystem fileSystem,
     IProjectDiagnosticOutputService logger,
     IProjectDependentFileChangeNotificationService projectDependentFileChangeNotificationService)
     : base(project, synchronousDisposal: true, registerDataSource: false)
 {
     _project    = project;
     _dataSource = dataSource;
     _projectAsynchronousTasksService = projectAsynchronousTasksService;
     _solutionRestoreService          = solutionRestoreService;
     _fileSystem = fileSystem;
     _logger     = logger;
     _projectDependentFileChangeNotificationService = projectDependentFileChangeNotificationService;
 }