1 instantiation of ZipFilePair
NuGet.Packaging (1)
PackageArchiveReader.cs (1)
349yield return new ZipFilePair(packageFileFullPath, entry);
8 references to ZipFilePair
NuGet.PackageManagement (2)
Utility\FileSystemUtility.cs (2)
243public static void DeleteFiles(IEnumerable<ZipFilePair> packageFiles, string packagesDir, INuGetProjectContext nuGetProjectContext) 247foreach (var packageFile in packageFiles.Where(e => e.IsInstalled()))
NuGet.Packaging (6)
PackageArchiveReader.cs (1)
343public IEnumerable<ZipFilePair> EnumeratePackageEntries(IEnumerable<string> packageFiles, string packageDirectory)
PackageExtraction\PackageHelper.cs (5)
162public static async Task<IEnumerable<ZipFilePair>> GetInstalledPackageFilesAsync( 169var installedPackageFiles = Enumerable.Empty<ZipFilePair>(); 182public static async Task<Tuple<string?, IEnumerable<ZipFilePair>>> GetInstalledSatelliteFilesAsync( 188var installedSatelliteFiles = Enumerable.Empty<ZipFilePair>(); 202return new Tuple<string?, IEnumerable<ZipFilePair>>(runtimePackageDirectory, installedSatelliteFiles.ToList());