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