13 references to OpenRead
dotnet.Tests (1)
CommandTests\Pack\PackTests.cs (1)
416using var zip = ZipFile.OpenRead(nupkgPath);
Microsoft.AspNetCore.App.UnitTests (2)
SharedFxTests.cs (1)
330ZipArchive archive = ZipFile.OpenRead(sharedFxPath);
TargetingPackTests.cs (1)
389ZipArchive archive = ZipFile.OpenRead(targetingPackPath);
Microsoft.Build.CommandLine.UnitTests (1)
XMake_Tests.cs (1)
2681using ZipArchive archive = ZipFile.OpenRead($"{binLogLocation}/replay.ProjectImports.zip");
Microsoft.DotNet.Internal.SymbolHelper (1)
SymbolUploadHelperFactory.cs (1)
139using ZipArchive archive = ZipFile.OpenRead(toolZipPath);
Microsoft.DotNet.PackageInstall.Tests (4)
EndToEndToolTests.cs (4)
422using var zipArchive = ZipFile.OpenRead(packagePath); 437using var zipArchive = ZipFile.OpenRead(packagePath); 495using var zipArchive = ZipFile.OpenRead(packagePath); 508using var zipArchive = ZipFile.OpenRead(packagePath);
Microsoft.DotNet.SignCheckLibrary (1)
Verification\SignatureVerificationManager.cs (1)
246using (ZipArchive zipArchive = ZipFile.OpenRead(path))
Microsoft.ML.Core (1)
ComponentModel\AssemblyLoadingUtils.cs (1)
51zip = ZipFile.OpenRead(path);
Microsoft.ML.IntegrationTests (1)
ModelFiles.cs (1)
61using (ZipArchive archive = ZipFile.OpenRead(modelPath))
Microsoft.NET.Build.Tests (1)
SourceLinkTests.cs (1)
214using var nupkg = ZipFile.OpenRead(Path.Combine(binDir.FullName, "SourceLinkTestApp.1.0.0.nupkg"));