1 implementation of Find
dotnet (1)
ToolManifest\ToolManifestFinder.cs (1)
34public IReadOnlyCollection<ToolManifestPackage> Find(FilePath? filePath = null)
2 references to Find
dotnet (2)
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
117var existingPackageWithPackageId = _toolManifestFinder.Find(manifestFile).Where(p => p.PackageId.Equals(packageId));
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
89packagesFromManifest = _toolManifestFinder.Find(customManifestFileLocation);