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