3 instantiations of ZipDataEntry
Microsoft.DotNet.SignTool (3)
src\ZipData.cs (3)
199yield return new ZipDataEntry(entry); 336yield return new ZipDataEntry(relativePath, stream); 417yield return new ZipDataEntry(relativePath, stream);
5 references to ZipDataEntry
Microsoft.DotNet.SignTool (5)
src\Configuration.cs (1)
778foreach (var entry in ZipData.ReadEntries(archivePath, _pathToContainerUnpackingDirectory, _tarToolPath, _pkgToolPath))
src\ZipData.cs (4)
57public static IEnumerable<ZipDataEntry> ReadEntries(string archivePath, string tempDir, string tarToolPath, string pkgToolPath, bool ignoreContent = false) 193private static IEnumerable<ZipDataEntry> ReadZipEntries(string archivePath) 322private static IEnumerable<ZipDataEntry> ReadPkgOrAppBundleEntries(string archivePath, string tempDir, string pkgToolPath, bool ignoreContent) 401private static IEnumerable<ZipDataEntry> ReadTarGZipEntries(string archivePath, string tempDir, string tarToolPath, bool ignoreContent)