6 references to GetRedistListPathsFromDisk
Microsoft.Build.Tasks.Core (6)
AssemblyDependency\ReferenceTable.cs (1)
2043string[] listPaths = RedistList.GetRedistListPathsFromDisk(path);
AssemblyDependency\ResolveAssemblyReference.cs (2)
2201AssemblyTableInfo[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(RedistList.GetRedistListPathsFromDisk), TargetFrameworkDirectories); 2770fullRedistAssemblyTableInfo = GetInstalledAssemblyTableInfo(false, FullFrameworkAssemblyTables, new GetListPath(RedistList.GetRedistListPathsFromDisk), FullFrameworkFolders);
RedistList.cs (3)
221redistListPaths = RedistList.GetRedistListPathsFromDisk(frameworkVersion20Path); 258string[] redistListPaths = (path == null) ? [] : GetRedistListPathsFromDisk(path); 275string[] redistListPaths = (referenceAssembliesPath == null) ? [] : GetRedistListPathsFromDisk(referenceAssembliesPath);