Beispiel #1
0
 public RestoreCommand(IFileSystem fileSystem, IBuildProjectSystem projectSystem,
                       IEnumerable <string> projectReferences = null, IEnumerable <string> pkgDefs = null)
     : base(fileSystem)
 {
     ProjectSystem     = projectSystem ?? throw new ArgumentNullException(nameof(projectSystem));
     ProjectReferences = projectReferences;
 }
 public RestoreCommand(IFileSystem fileSystem, IBuildProjectSystem projectSystem)
     : base(fileSystem)
 {
     ProjectSystem = projectSystem ?? throw new ArgumentNullException(nameof(projectSystem));
 }