4 implementations of Find
dotnet (1)
ToolManifest\ToolManifestFinder.cs (1)
34public IReadOnlyCollection<ToolManifestPackage> Find(FilePath? filePath = null)
dotnet.Tests (3)
CommandTests\Tool\Restore\ToolRestoreCommandTests.cs (2)
544public IReadOnlyCollection<ToolManifestPackage> Find(FilePath? filePath = null) 562public IReadOnlyCollection<ToolManifestPackage> Find(FilePath? filePath = null)
CommandTests\Tool\Restore\ToolRestoreCommandWithMultipleNugetConfigTests.cs (1)
170public IReadOnlyCollection<ToolManifestPackage> Find(FilePath? filePath = null)
2 references to Find
dotnet (2)
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
103var existingPackageWithPackageId = _toolManifestFinder.Find(manifestFile).Where(p => p.PackageId.Equals(packageId));
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
91packagesFromManifest = _toolManifestFinder.Find(customManifestFileLocation);