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