/// <summary> /// Registers the specified tool file path. /// </summary> /// <param name="path">The tool path.</param> public void RegisterFile(FilePath path) { if (path == null) { throw new ArgumentNullException(nameof(path)); } _repository.Register(path.MakeAbsolute(_environment)); }