12 references to TarWriter
Microsoft.Build.Tasks.Core (1)
TarDirectory.cs (1)
230using TarWriter writer = new TarWriter(compressionStream ?? destinationStream, format, leaveOpen: true);
Microsoft.NET.Build.Containers (7)
Layer.cs (1)
106using (TarWriter writer = new(layerStream, TarEntryFormat.Pax, leaveOpen: true))
LocalDaemons\ContainerArchive.cs (3)
61using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true); 81using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true); 96using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true);
LocalDaemons\DockerCli.cs (3)
312using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true); 419using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true); 515using TarWriter writer = new(imageStream, TarEntryFormat.Pax, leaveOpen: true);
System.Formats.Tar (4)
System\Formats\Tar\TarWriter.cs (4)
33: this(archiveStream, TarEntryFormat.Pax, leaveOpen: false) 46: this(archiveStream, TarEntryFormat.Pax, leaveOpen) 155/// <para>The entry will be created using the format specified in the <see cref="TarWriter(Stream, TarEntryFormat, bool)"/> constructor, or will use <see cref="TarEntryFormat.Pax"/> if other constructors are used.</para> 177/// <para>The entry will be created using the format specified in the <see cref="TarWriter(Stream, TarEntryFormat, bool)"/> constructor, or will use <see cref="TarEntryFormat.Pax"/> if other constructors are used.</para>