Example #1
0
 public ProjectAnalysisService(IDependencyGraphService dependencyGraphService, IDotNetRestoreService dotNetRestoreService, IFileSystem fileSystem)
 {
     _dependencyGraphService = dependencyGraphService;
     _dotNetRestoreService   = dotNetRestoreService;
     _fileSystem             = fileSystem;
 }
 public ProjectAnalysisService(IDependencyGraphService dependencyGraphService)
 {
     _dependencyGraphService = dependencyGraphService;
 }
Example #3
0
 public NameValidator(
     IDependencyGraphService dependencyGraphService) => DependencyGraphService = dependencyGraphService;
Example #4
0
 public CoreNugetPackageDetector(IDependencyGraphService dependencyGraphService)
 {
     DependencyGraphService = dependencyGraphService;
 }
Example #5
0
 public NewSubcommandRunner(IDependencyGraphService dependencyGraphService) => DependencyGraphService = dependencyGraphService;