36 references to CreateEntry
aspire (5)
src\Shared\Export\ExportArchive.cs (5)
83var entry = archive.CreateEntry($"resources/{SanitizeFileName(name)}.json"); 91var entry = archive.CreateEntry($"consolelogs/{SanitizeFileName(name)}.txt"); 103var entry = archive.CreateEntry($"structuredlogs/{SanitizeFileName(name)}.json"); 111var entry = archive.CreateEntry($"traces/{SanitizeFileName(name)}.json"); 119var entry = archive.CreateEntry($"metrics/{SanitizeFileName(name)}.json");
Aspire.Cli.Tests (2)
Agents\AspireSkillsBundleTests.cs (1)
612var entry = archive.CreateEntry("bundle/references/file:stream.md");
Packaging\PackageChannelTests.cs (1)
1025var entry = archive.CreateEntry($"{packageId}.nuspec");
Aspire.Dashboard (5)
src\Shared\Export\ExportArchive.cs (5)
83var entry = archive.CreateEntry($"resources/{SanitizeFileName(name)}.json"); 91var entry = archive.CreateEntry($"consolelogs/{SanitizeFileName(name)}.txt"); 103var entry = archive.CreateEntry($"structuredlogs/{SanitizeFileName(name)}.json"); 111var entry = archive.CreateEntry($"traces/{SanitizeFileName(name)}.json"); 119var entry = archive.CreateEntry($"metrics/{SanitizeFileName(name)}.json");
Aspire.Dashboard.Tests (4)
Model\TelemetryImportServiceTests.cs (4)
157var logsEntry = archive.CreateEntry("logs.json"); 164var tracesEntry = archive.CreateEntry("traces.json"); 200var txtEntry = archive.CreateEntry("console.txt"); 207var logsEntry = archive.CreateEntry("logs.json");
Aspire.Hosting.Java.Tests (1)
AddJavaAppTests.cs (1)
1529using var writer = new StreamWriter(archive.CreateEntry("META-INF/MANIFEST.MF").Open());
Aspire.Hosting.RemoteHost.Tests (2)
ManifestCommandTests.cs (1)
258var entry = archive.CreateEntry(entryName);
RestoreCommandTests.cs (1)
115var entry = archive.CreateEntry(path);
crossgen2 (3)
parent\parent\Common\CommandLineHelpers.cs (3)
224ZipArchiveEntry commandEntry = archive.CreateEntry("command.txt"); 319ZipArchiveEntry rspEntry = archive.CreateEntry("repro.rsp"); 341archive.CreateEntry(reproFileDir); // for outputs just create output directory
ilc (3)
parent\parent\Common\CommandLineHelpers.cs (3)
224ZipArchiveEntry commandEntry = archive.CreateEntry("command.txt"); 319ZipArchiveEntry rspEntry = archive.CreateEntry("repro.rsp"); 341archive.CreateEntry(reproFileDir); // for outputs just create output directory
Infrastructure.Tests (1)
PowerShellScripts\DownloadNativeArchivesTests.cs (1)
478var entry = archive.CreateEntry(path);
Microsoft.Arcade.Common (1)
ZipArchiveManager.cs (1)
55ZipArchiveEntry entry = archive.CreateEntry(targetFilename);
Microsoft.Build (1)
Logging\BinaryLogger\ProjectImportsCollector.cs (1)
242var archiveEntry = _zipArchive!.CreateEntry(archivePath);
Microsoft.ML.Core (1)
Data\Repository.cs (1)
400var ae = _archive.CreateEntry(kvp.Key);
NuGet.Packaging (1)
PackageFileExtractor.cs (1)
112var entry = zipArchive.CreateEntry(Path.GetFileName(source));
System.IO.Compression.ZipFile (4)
System\IO\Compression\ZipFile.Create.Async.cs (1)
545archive.CreateEntry(entryName);
System\IO\Compression\ZipFile.Create.cs (2)
493archive.CreateEntry(entryName); 577archive.CreateEntry(ArchivingUtils.EntryFromPath(di.Name, appendPathSeparator: true));
System\IO\Compression\ZipFileExtensions.ZipArchive.Create.cs (1)
177: destination.CreateEntry(entryName);
System.IO.Packaging (2)
System\IO\Packaging\ZipPackage.cs (1)
905_contentTypeZipArchiveEntry = _zipArchive.CreateEntry(ContentTypesFile);
System\IO\Packaging\ZipPackagePartPiece.cs (1)
146ZipArchiveEntry newPieceEntry = zipArchive.CreateEntry(newPieceFileName);